string.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:10k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/lib/string.c
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  */
  6. /*
  7.  * stupid library routines.. The optimized versions should generally be found
  8.  * as inline code in <asm-xx/string.h>
  9.  *
  10.  * These are buggy as well..
  11.  *
  12.  * * Fri Jun 25 1999, Ingo Oeser <ioe@informatik.tu-chemnitz.de>
  13.  * -  Added strsep() which will replace strtok() soon (because strsep() is
  14.  *    reentrant and should be faster). Use only strsep() in new code, please.
  15.  */
  16.  
  17. #include <linux/types.h>
  18. #include <linux/string.h>
  19. #include <linux/ctype.h>
  20. #ifndef __HAVE_ARCH_STRNICMP
  21. /**
  22.  * strnicmp - Case insensitive, length-limited string comparison
  23.  * @s1: One string
  24.  * @s2: The other string
  25.  * @len: the maximum number of characters to compare
  26.  */
  27. int strnicmp(const char *s1, const char *s2, size_t len)
  28. {
  29. /* Yes, Virginia, it had better be unsigned */
  30. unsigned char c1, c2;
  31. c1 = 0; c2 = 0;
  32. if (len) {
  33. do {
  34. c1 = *s1; c2 = *s2;
  35. s1++; s2++;
  36. if (!c1)
  37. break;
  38. if (!c2)
  39. break;
  40. if (c1 == c2)
  41. continue;
  42. c1 = tolower(c1);
  43. c2 = tolower(c2);
  44. if (c1 != c2)
  45. break;
  46. } while (--len);
  47. }
  48. return (int)c1 - (int)c2;
  49. }
  50. #endif
  51. char * ___strtok;
  52. #ifndef __HAVE_ARCH_STRCPY
  53. /**
  54.  * strcpy - Copy a %NUL terminated string
  55.  * @dest: Where to copy the string to
  56.  * @src: Where to copy the string from
  57.  */
  58. char * strcpy(char * dest,const char *src)
  59. {
  60. char *tmp = dest;
  61. while ((*dest++ = *src++) != '')
  62. /* nothing */;
  63. return tmp;
  64. }
  65. #endif
  66. #ifndef __HAVE_ARCH_STRNCPY
  67. /**
  68.  * strncpy - Copy a length-limited, %NUL-terminated string
  69.  * @dest: Where to copy the string to
  70.  * @src: Where to copy the string from
  71.  * @count: The maximum number of bytes to copy
  72.  *
  73.  * Note that unlike userspace strncpy, this does not %NUL-pad the buffer.
  74.  * However, the result is not %NUL-terminated if the source exceeds
  75.  * @count bytes.
  76.  */
  77. char * strncpy(char * dest,const char *src,size_t count)
  78. {
  79. char *tmp = dest;
  80. while (count-- && (*dest++ = *src++) != '')
  81. /* nothing */;
  82. return tmp;
  83. }
  84. #endif
  85. #ifndef __HAVE_ARCH_STRCAT
  86. /**
  87.  * strcat - Append one %NUL-terminated string to another
  88.  * @dest: The string to be appended to
  89.  * @src: The string to append to it
  90.  */
  91. char * strcat(char * dest, const char * src)
  92. {
  93. char *tmp = dest;
  94. while (*dest)
  95. dest++;
  96. while ((*dest++ = *src++) != '')
  97. ;
  98. return tmp;
  99. }
  100. #endif
  101. #ifndef __HAVE_ARCH_STRNCAT
  102. /**
  103.  * strncat - Append a length-limited, %NUL-terminated string to another
  104.  * @dest: The string to be appended to
  105.  * @src: The string to append to it
  106.  * @count: The maximum numbers of bytes to copy
  107.  *
  108.  * Note that in contrast to strncpy, strncat ensures the result is
  109.  * terminated.
  110.  */
  111. char * strncat(char *dest, const char *src, size_t count)
  112. {
  113. char *tmp = dest;
  114. if (count) {
  115. while (*dest)
  116. dest++;
  117. while ((*dest++ = *src++)) {
  118. if (--count == 0) {
  119. *dest = '';
  120. break;
  121. }
  122. }
  123. }
  124. return tmp;
  125. }
  126. #endif
  127. #ifndef __HAVE_ARCH_STRCMP
  128. /**
  129.  * strcmp - Compare two strings
  130.  * @cs: One string
  131.  * @ct: Another string
  132.  */
  133. int strcmp(const char * cs,const char * ct)
  134. {
  135. register signed char __res;
  136. while (1) {
  137. if ((__res = *cs - *ct++) != 0 || !*cs++)
  138. break;
  139. }
  140. return __res;
  141. }
  142. #endif
  143. #ifndef __HAVE_ARCH_STRNCMP
  144. /**
  145.  * strncmp - Compare two length-limited strings
  146.  * @cs: One string
  147.  * @ct: Another string
  148.  * @count: The maximum number of bytes to compare
  149.  */
  150. int strncmp(const char * cs,const char * ct,size_t count)
  151. {
  152. register signed char __res = 0;
  153. while (count) {
  154. if ((__res = *cs - *ct++) != 0 || !*cs++)
  155. break;
  156. count--;
  157. }
  158. return __res;
  159. }
  160. #endif
  161. #ifndef __HAVE_ARCH_STRCHR
  162. /**
  163.  * strchr - Find the first occurrence of a character in a string
  164.  * @s: The string to be searched
  165.  * @c: The character to search for
  166.  */
  167. char * strchr(const char * s, int c)
  168. {
  169. for(; *s != (char) c; ++s)
  170. if (*s == '')
  171. return NULL;
  172. return (char *) s;
  173. }
  174. #endif
  175. #ifndef __HAVE_ARCH_STRRCHR
  176. /**
  177.  * strrchr - Find the last occurrence of a character in a string
  178.  * @s: The string to be searched
  179.  * @c: The character to search for
  180.  */
  181. char * strrchr(const char * s, int c)
  182. {
  183.        const char *p = s + strlen(s);
  184.        do {
  185.            if (*p == (char)c)
  186.                return (char *)p;
  187.        } while (--p >= s);
  188.        return NULL;
  189. }
  190. #endif
  191. #ifndef __HAVE_ARCH_STRLEN
  192. /**
  193.  * strlen - Find the length of a string
  194.  * @s: The string to be sized
  195.  */
  196. size_t strlen(const char * s)
  197. {
  198. const char *sc;
  199. for (sc = s; *sc != ''; ++sc)
  200. /* nothing */;
  201. return sc - s;
  202. }
  203. #endif
  204. #ifndef __HAVE_ARCH_STRNLEN
  205. /**
  206.  * strnlen - Find the length of a length-limited string
  207.  * @s: The string to be sized
  208.  * @count: The maximum number of bytes to search
  209.  */
  210. size_t strnlen(const char * s, size_t count)
  211. {
  212. const char *sc;
  213. for (sc = s; count-- && *sc != ''; ++sc)
  214. /* nothing */;
  215. return sc - s;
  216. }
  217. #endif
  218. #ifndef __HAVE_ARCH_STRSPN
  219. /**
  220.  * strspn - Calculate the length of the initial substring of @s which only
  221.  *  contain letters in @accept
  222.  * @s: The string to be searched
  223.  * @accept: The string to search for
  224.  */
  225. size_t strspn(const char *s, const char *accept)
  226. {
  227. const char *p;
  228. const char *a;
  229. size_t count = 0;
  230. for (p = s; *p != ''; ++p) {
  231. for (a = accept; *a != ''; ++a) {
  232. if (*p == *a)
  233. break;
  234. }
  235. if (*a == '')
  236. return count;
  237. ++count;
  238. }
  239. return count;
  240. }
  241. #endif
  242. #ifndef __HAVE_ARCH_STRPBRK
  243. /**
  244.  * strpbrk - Find the first occurrence of a set of characters
  245.  * @cs: The string to be searched
  246.  * @ct: The characters to search for
  247.  */
  248. char * strpbrk(const char * cs,const char * ct)
  249. {
  250. const char *sc1,*sc2;
  251. for( sc1 = cs; *sc1 != ''; ++sc1) {
  252. for( sc2 = ct; *sc2 != ''; ++sc2) {
  253. if (*sc1 == *sc2)
  254. return (char *) sc1;
  255. }
  256. }
  257. return NULL;
  258. }
  259. #endif
  260. #ifndef __HAVE_ARCH_STRTOK
  261. /**
  262.  * strtok - Split a string into tokens
  263.  * @s: The string to be searched
  264.  * @ct: The characters to search for
  265.  *
  266.  * WARNING: strtok is deprecated, use strsep instead.
  267.  */
  268. char * strtok(char * s,const char * ct)
  269. {
  270. char *sbegin, *send;
  271. sbegin  = s ? s : ___strtok;
  272. if (!sbegin) {
  273. return NULL;
  274. }
  275. sbegin += strspn(sbegin,ct);
  276. if (*sbegin == '') {
  277. ___strtok = NULL;
  278. return( NULL );
  279. }
  280. send = strpbrk( sbegin, ct);
  281. if (send && *send != '')
  282. *send++ = '';
  283. ___strtok = send;
  284. return (sbegin);
  285. }
  286. #endif
  287. #ifndef __HAVE_ARCH_STRSEP
  288. /**
  289.  * strsep - Split a string into tokens
  290.  * @s: The string to be searched
  291.  * @ct: The characters to search for
  292.  *
  293.  * strsep() updates @s to point after the token, ready for the next call.
  294.  *
  295.  * It returns empty tokens, too, behaving exactly like the libc function
  296.  * of that name. In fact, it was stolen from glibc2 and de-fancy-fied.
  297.  * Same semantics, slimmer shape. ;)
  298.  */
  299. char * strsep(char **s, const char *ct)
  300. {
  301. char *sbegin = *s, *end;
  302. if (sbegin == NULL)
  303. return NULL;
  304. end = strpbrk(sbegin, ct);
  305. if (end)
  306. *end++ = '';
  307. *s = end;
  308. return sbegin;
  309. }
  310. #endif
  311. #ifndef __HAVE_ARCH_MEMSET
  312. /**
  313.  * memset - Fill a region of memory with the given value
  314.  * @s: Pointer to the start of the area.
  315.  * @c: The byte to fill the area with
  316.  * @count: The size of the area.
  317.  *
  318.  * Do not use memset() to access IO space, use memset_io() instead.
  319.  */
  320. void * memset(void * s,int c,size_t count)
  321. {
  322. char *xs = (char *) s;
  323. while (count--)
  324. *xs++ = c;
  325. return s;
  326. }
  327. #endif
  328. #ifndef __HAVE_ARCH_BCOPY
  329. /**
  330.  * bcopy - Copy one area of memory to another
  331.  * @src: Where to copy from
  332.  * @dest: Where to copy to
  333.  * @count: The size of the area.
  334.  *
  335.  * Note that this is the same as memcpy(), with the arguments reversed.
  336.  * memcpy() is the standard, bcopy() is a legacy BSD function.
  337.  *
  338.  * You should not use this function to access IO space, use memcpy_toio()
  339.  * or memcpy_fromio() instead.
  340.  */
  341. char * bcopy(const char * src, char * dest, int count)
  342. {
  343. char *tmp = dest;
  344. while (count--)
  345. *tmp++ = *src++;
  346. return dest;
  347. }
  348. #endif
  349. #ifndef __HAVE_ARCH_MEMCPY
  350. /**
  351.  * memcpy - Copy one area of memory to another
  352.  * @dest: Where to copy to
  353.  * @src: Where to copy from
  354.  * @count: The size of the area.
  355.  *
  356.  * You should not use this function to access IO space, use memcpy_toio()
  357.  * or memcpy_fromio() instead.
  358.  */
  359. void * memcpy(void * dest,const void *src,size_t count)
  360. {
  361. char *tmp = (char *) dest, *s = (char *) src;
  362. while (count--)
  363. *tmp++ = *s++;
  364. return dest;
  365. }
  366. #endif
  367. #ifndef __HAVE_ARCH_MEMMOVE
  368. /**
  369.  * memmove - Copy one area of memory to another
  370.  * @dest: Where to copy to
  371.  * @src: Where to copy from
  372.  * @count: The size of the area.
  373.  *
  374.  * Unlike memcpy(), memmove() copes with overlapping areas.
  375.  */
  376. void * memmove(void * dest,const void *src,size_t count)
  377. {
  378. char *tmp, *s;
  379. if (dest <= src) {
  380. tmp = (char *) dest;
  381. s = (char *) src;
  382. while (count--)
  383. *tmp++ = *s++;
  384. }
  385. else {
  386. tmp = (char *) dest + count;
  387. s = (char *) src + count;
  388. while (count--)
  389. *--tmp = *--s;
  390. }
  391. return dest;
  392. }
  393. #endif
  394. #ifndef __HAVE_ARCH_MEMCMP
  395. /**
  396.  * memcmp - Compare two areas of memory
  397.  * @cs: One area of memory
  398.  * @ct: Another area of memory
  399.  * @count: The size of the area.
  400.  */
  401. int memcmp(const void * cs,const void * ct,size_t count)
  402. {
  403. const unsigned char *su1, *su2;
  404. int res = 0;
  405. for( su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
  406. if ((res = *su1 - *su2) != 0)
  407. break;
  408. return res;
  409. }
  410. #endif
  411. #ifndef __HAVE_ARCH_MEMSCAN
  412. /**
  413.  * memscan - Find a character in an area of memory.
  414.  * @addr: The memory area
  415.  * @c: The byte to search for
  416.  * @size: The size of the area.
  417.  *
  418.  * returns the address of the first occurrence of @c, or 1 byte past
  419.  * the area if @c is not found
  420.  */
  421. void * memscan(void * addr, int c, size_t size)
  422. {
  423. unsigned char * p = (unsigned char *) addr;
  424. while (size) {
  425. if (*p == c)
  426. return (void *) p;
  427. p++;
  428. size--;
  429. }
  430.    return (void *) p;
  431. }
  432. #endif
  433. #ifndef __HAVE_ARCH_STRSTR
  434. /**
  435.  * strstr - Find the first substring in a %NUL terminated string
  436.  * @s1: The string to be searched
  437.  * @s2: The string to search for
  438.  */
  439. char * strstr(const char * s1,const char * s2)
  440. {
  441. int l1, l2;
  442. l2 = strlen(s2);
  443. if (!l2)
  444. return (char *) s1;
  445. l1 = strlen(s1);
  446. while (l1 >= l2) {
  447. l1--;
  448. if (!memcmp(s1,s2,l2))
  449. return (char *) s1;
  450. s1++;
  451. }
  452. return NULL;
  453. }
  454. #endif
  455. #ifndef __HAVE_ARCH_MEMCHR
  456. /**
  457.  * memchr - Find a character in an area of memory.
  458.  * @s: The memory area
  459.  * @c: The byte to search for
  460.  * @n: The size of the area.
  461.  *
  462.  * returns the address of the first occurrence of @c, or %NULL
  463.  * if @c is not found
  464.  */
  465. void *memchr(const void *s, int c, size_t n)
  466. {
  467. const unsigned char *p = s;
  468. while (n-- != 0) {
  469.          if ((unsigned char)c == *p++) {
  470. return (void *)(p-1);
  471. }
  472. }
  473. return NULL;
  474. }
  475. #endif