string.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:7k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef HLXSYS_STRING_H
  36. #define HLXSYS_STRING_H
  37. #if defined(_OPENWAVE)
  38. #include "platform/openwave/hx_op_stdc.h"
  39. #else
  40. #include <string.h>
  41. #endif /* !_OPENWAVE */
  42. #ifdef _SYMBIAN
  43. //on symbian we have stuff scattered all about.
  44. # include <stdlib.h>
  45. # include <ctype.h>
  46. #endif
  47. #if !defined(_VXWORKS)
  48. #ifdef _UNIX
  49. #include <strings.h>
  50. #endif /* _UNIX */
  51. #endif /* !defined(_VXWORKS) */
  52. /* If we are on Windows and are compiling
  53.  * a .c file and are using Visual C++,
  54.  * then use __inline instead of inline.
  55.  */
  56. #if (defined(_WINDOWS) || defined(_OPENWAVE)) && 
  57.     !defined(__cplusplus) && defined(_MSC_VER)
  58. #define HLX_INLINE __inline
  59. #else
  60. #define HLX_INLINE inline
  61. #endif
  62. #ifdef __cplusplus
  63. extern "C" {
  64. #endif /* __cplusplus */
  65. char * __helix_strrev(char * str);
  66. void __helix_strlwr(char *s);
  67. void __helix_strupr(char *s);
  68. const char* __helix_strnchr(const char* sc, const char c, size_t n);
  69. const char* __helix_strnstr(const char* sc, const char* str, size_t n);
  70.     
  71. #ifdef __cplusplus
  72. }
  73. #endif /* __cplusplus */
  74. #define strnchr __helix_strnchr
  75. #define strnstr __helix_strnstr
  76. #ifdef _WINDOWS
  77. #ifdef _WINCE
  78.  int strcasecmp(const char* str1, const char* str2);
  79.  #else
  80. HLX_INLINE int
  81. strcasecmp(const char* str1, const char* str2)
  82. {
  83.     return _stricmp(str1, str2);
  84. }
  85. #endif //_WINCE
  86. HLX_INLINE int
  87. strncasecmp(const char* str1, const char* str2, int len)
  88. {
  89.     return _strnicmp(str1, str2, (size_t) len);
  90. }
  91. #if defined(WIN32_PLATFORM_PSPC) 
  92. #define strrev __helix_strrev
  93. #define stricmp strcasecmp
  94. #define strcmpi strcasecmp
  95. #define strnicmp strncasecmp
  96. #define strlwr __helix_strlwr
  97. #define strupr __helix_strupr
  98. #endif /* defined(WIN32_PLATFORM_PSPC) */
  99. #endif /* _WINDOWS */
  100. #if defined(_SYMBIAN)
  101. unsigned long __helix_strtoul(const char*s, char**end, int base);
  102. #define strtoul __helix_strtoul
  103. #define strrev __helix_strrev
  104. #define stricmp strcasecmp
  105. #define strnicmp strncasecmp
  106. #define strlwr __helix_strlwr
  107. #define strupr __helix_strupr
  108. #endif /* _SYMBIAN */
  109. #if defined(_OPENWAVE)
  110. #define strcmpi stricmp
  111. #define strrev __helix_strrev
  112. #define strlwr __helix_strlwr
  113. #undef stricmp
  114. #undef strnicmp
  115. #define stricmp strcasecmp
  116. #define strnicmp strncasecmp
  117. #endif /* _OPENWAVE_ARMULATOR */
  118. #if defined (_MACINTOSH) 
  119. #ifdef _MAC_MACHO
  120. #define strlwr __helix_strlwr
  121. #define stricmp strcasecmp
  122. #define strnicmp strncasecmp
  123. #define strrev __helix_strrev
  124. #else
  125. int strnicmp(const char *first, const char *last, size_t count);
  126. int stricmp(const char *first, const char *last);
  127. char * strrev(char * str);
  128. #endif
  129. #define strcmpi stricmp
  130. #ifndef _MAC_MACHO
  131. HLX_INLINE int
  132. strcasecmp(const char* str1, const char* str2)
  133. {
  134.     return stricmp(str1, str2);
  135. }
  136. #endif
  137. #endif /* _MACINTOSH */
  138. #if defined (_UNIX) && !defined (__QNXNTO__)
  139. /* strcasecmp, strncasecmp are defined in strings.h */
  140. #define stricmp  strcasecmp
  141. #define strcmpi  strcasecmp
  142. #define strnicmp strncasecmp
  143. // Convert integer to string
  144. // reverse a string in place
  145. #define strrev __helix_strrev
  146. #define strlwr __helix_strlwr
  147. #define strupr __helix_strupr
  148. #endif /* _UNIX */
  149. #if defined (_MACINTOSH) || defined (_UNIX)
  150. #define _tcsspn strspn
  151. #define _tcscspn strcspn
  152. #define _tcsrchr strchr
  153. #define _tcsstr strstr
  154. #endif
  155. #ifdef _VXWORKS
  156. extern "C" {
  157. int strncasecmp(const char *first, const char *last, size_t count);
  158. int strcasecmp(const char *first, const char *last);
  159. }
  160. #endif /* _VXWORKS */
  161. #if defined(_WINDOWS) && !defined(__cplusplus) && defined(_MSC_VER)
  162. #include "hlxclib/stdlib.h"     // malloc()
  163. #define NEW_STRING_BUFFER new_string_buffer
  164. #define HLX_ALLOC(x)      ((char*) malloc((x)))
  165. #define HLX_DEALLOC(x)    free((x))
  166. #elif defined(__cplusplus)
  167. #define NEW_STRING_BUFFER new_string
  168. #define HLX_ALLOC(x)      (new char[(x)])
  169. #define HLX_DEALLOC(x)    delete [] (x)
  170. #endif /* #elif defined(__cplusplus) */
  171. #ifdef HLX_ALLOC
  172. HLX_INLINE char*
  173. NEW_STRING_BUFFER(const void* mem, int len)
  174. {
  175.     char* str = HLX_ALLOC(len+1);
  176.     if (str)
  177.     {
  178.         memcpy((void*)str, mem, len); /* Flawfinder: ignore */
  179.         str[len] = '';
  180.     }
  181.     return str;
  182. }
  183. HLX_INLINE char*
  184. new_string(const char* str)
  185. {
  186.     char* pTmp = HLX_ALLOC(strlen(str)+1);
  187.     return pTmp ? strcpy(pTmp, str) : NULL; /* Flawfinder: ignore */
  188. }
  189. HLX_INLINE char*
  190. new_path_string(const char* str)
  191. {
  192.     char* pnew = HLX_ALLOC(strlen(str) + 1);
  193.     const char* psrc = str;
  194.     char* pdst = pnew;
  195.     if (!pnew) return NULL;
  196.     while (*psrc)
  197.     {
  198.         if (*psrc == '/' || *psrc == '\')
  199.         {
  200. #if defined _WIN32 || defined(_SYMBIAN)
  201.             *pdst = '\';
  202. #elif defined _UNIX || defined _OPENWAVE
  203.             *pdst = '/';
  204. #elif defined __MWERKS__
  205.             *pdst = ':';
  206. #else
  207.     *pdst = *psrc;
  208. #endif
  209.         }
  210.         else
  211.         {
  212.             *pdst = *psrc;
  213.         }
  214.         psrc++;
  215.         pdst++;
  216.     }
  217.     *pdst = '';
  218.     return pnew;
  219. }
  220. HLX_INLINE void
  221. delete_string(char* str)
  222. {
  223.     if (str)
  224.     {
  225. HLX_DEALLOC(str);
  226.     }
  227. }
  228. #endif /* HLX_ALLOC */
  229. #endif /* HLXSYS_STRING_H */