string.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:8k
源码类别:

Symbian

开发平台:

Visual C++

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