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

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. #include "hlxclib/string.h"
  36. char * __helix_strrev(char * str)
  37. {
  38.     int SmallIndex = 0;
  39.     int BigIndex = strlen(str) - 1;
  40.     
  41.     while (SmallIndex < BigIndex) {
  42. char Temp = str[SmallIndex];
  43. str[SmallIndex] = str[BigIndex];
  44. str[BigIndex] = Temp;
  45. SmallIndex++;
  46. BigIndex--;
  47.     }
  48.     
  49.     return str;
  50. }
  51. void __helix_strlwr(char *s)
  52. {
  53.     for (; *s; s++)
  54.     {
  55.         if ((*s <= 'Z') && (*s >= 'A'))
  56.             *s += ('a' - 'A');
  57.     }
  58. }
  59. void __helix_strupr(char *s)
  60. {
  61.     for (; *s; s++)
  62.     {
  63.         if ((*s <= 'z') && (*s >= 'a'))
  64.             *s -= ('a' - 'A');
  65.     }
  66. }
  67. #ifdef _WINCE
  68. int strcasecmp(const char* str1, const char* str2)
  69. {
  70. int f=0,l=0;
  71. do 
  72. {
  73. if ( ((f = (unsigned char) (*(str1++))) >= 'A') &&
  74. (f <= 'Z') )
  75. f -= 'A' - 'a';
  76. if ( ((l = (unsigned char) (*(str2++))) >= 'A') &&
  77. (l <= 'Z') )
  78. l -= 'A' - 'a';
  79. } while (f && (f == l) );
  80. return ( f - l );
  81. }
  82. #endif //_WINCE
  83. #ifdef _SYMBIAN
  84. #undef strtoul
  85. unsigned long __helix_strtoul(const char*s, char**end, int base)
  86. {
  87.     /* Symbian doesn't like leading +/- signs. So, strip and apply
  88.      * later.
  89.      */
  90.     int t=1;
  91.     if(s && (*s=='-' || *s=='+'))
  92.     {
  93.         if(*s=='-')
  94.             t=-1;
  95.         ++s;
  96.     }
  97.     return t*strtoul(s, end, base);
  98. }
  99. #endif
  100. /*___________________________________________________________________________
  101.  *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  102.  *  __helix_strnstr(sc, str, n)
  103.  *
  104.  *  PARAMETERS:
  105.  * sc search string
  106.  * str string to be found
  107.  * n len of sc
  108.  *
  109.  *  DESCRIPTION:
  110.  * finds a string in a string with a length restriction
  111.  *
  112.  *  RETURNS
  113.  * points to position in sc of str. or NULL if not found
  114.  *___________________________________________________________________________
  115.  *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  116. const char*
  117. __helix_strnstr(const char* sc, const char* str, size_t n)
  118. {
  119.     if ( !sc || !*sc )
  120.     {
  121. return NULL;
  122.     }
  123.     else if ( !str || !*str )
  124.     {
  125. return sc;
  126.     }
  127.     size_t len = strlen(str);
  128.     for ( int i = 0; i < n && strlen(sc) > len; i++, sc++ )
  129.     {
  130. if ( !strncmp(sc, str, len) )
  131. {
  132.     return sc;
  133. }
  134.     }
  135.     return NULL;
  136. }
  137. /*___________________________________________________________________________
  138.  *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  139.  *  __helix_strnchr(sc, str, n)
  140.  *
  141.  *  PARAMETERS:
  142.  * sc search string
  143.  * c character to be found
  144.  * n len of sc
  145.  *
  146.  *  DESCRIPTION:
  147.  * finds a character in a string with a length restriction
  148.  *
  149.  * RETURNS
  150.  * points to position in sc of c. or NULL if not found
  151.  *___________________________________________________________________________
  152.  *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
  153. const char*
  154. __helix_strnchr(const char* sc, const char c, size_t n)
  155. {
  156.     for ( int i = 0; i < n && *sc; ++i, ++sc)
  157.     {
  158. if ( *sc == c )
  159. {
  160.     return sc;
  161. }
  162.     }
  163.     return NULL;
  164. }