[PATCH] DVB: Other DVB core updates
[linux-2.6/history.git] / lib / string.c
blobd2f23f2c1e699eae2acabad8e568bc27bf8dbdcd
1 /*
2 * linux/lib/string.c
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
7 /*
8 * stupid library routines.. The optimized versions should generally be found
9 * as inline code in <asm-xx/string.h>
11 * These are buggy as well..
13 * * Fri Jun 25 1999, Ingo Oeser <ioe@informatik.tu-chemnitz.de>
14 * - Added strsep() which will replace strtok() soon (because strsep() is
15 * reentrant and should be faster). Use only strsep() in new code, please.
17 * * Sat Feb 09 2002, Jason Thomas <jason@topic.com.au>,
18 * Matthew Hawkins <matt@mh.dropbear.id.au>
19 * - Kissed strtok() goodbye
22 #define IN_STRING_C 1
24 #include <linux/types.h>
25 #include <linux/string.h>
26 #include <linux/ctype.h>
27 #include <linux/module.h>
29 #ifndef __HAVE_ARCH_STRNICMP
30 /**
31 * strnicmp - Case insensitive, length-limited string comparison
32 * @s1: One string
33 * @s2: The other string
34 * @len: the maximum number of characters to compare
36 int strnicmp(const char *s1, const char *s2, size_t len)
38 /* Yes, Virginia, it had better be unsigned */
39 unsigned char c1, c2;
41 c1 = 0; c2 = 0;
42 if (len) {
43 do {
44 c1 = *s1; c2 = *s2;
45 s1++; s2++;
46 if (!c1)
47 break;
48 if (!c2)
49 break;
50 if (c1 == c2)
51 continue;
52 c1 = tolower(c1);
53 c2 = tolower(c2);
54 if (c1 != c2)
55 break;
56 } while (--len);
58 return (int)c1 - (int)c2;
61 EXPORT_SYMBOL(strnicmp);
62 #endif
64 #ifndef __HAVE_ARCH_STRCPY
65 /**
66 * strcpy - Copy a %NUL terminated string
67 * @dest: Where to copy the string to
68 * @src: Where to copy the string from
70 char * strcpy(char * dest,const char *src)
72 char *tmp = dest;
74 while ((*dest++ = *src++) != '\0')
75 /* nothing */;
76 return tmp;
78 #endif
80 #ifndef __HAVE_ARCH_STRNCPY
81 /**
82 * strncpy - Copy a length-limited, %NUL-terminated string
83 * @dest: Where to copy the string to
84 * @src: Where to copy the string from
85 * @count: The maximum number of bytes to copy
87 * The result is not %NUL-terminated if the source exceeds
88 * @count bytes.
90 char * strncpy(char * dest,const char *src,size_t count)
92 char *tmp = dest;
94 while (count) {
95 if ((*tmp = *src) != 0) src++;
96 tmp++;
97 count--;
99 return dest;
101 #endif
103 #ifndef __HAVE_ARCH_STRLCPY
105 * strlcpy - Copy a %NUL terminated string into a sized buffer
106 * @dest: Where to copy the string to
107 * @src: Where to copy the string from
108 * @size: size of destination buffer
110 * Compatible with *BSD: the result is always a valid
111 * NUL-terminated string that fits in the buffer (unless,
112 * of course, the buffer size is zero). It does not pad
113 * out the result like strncpy() does.
115 size_t strlcpy(char *dest, const char *src, size_t size)
117 size_t ret = strlen(src);
119 if (size) {
120 size_t len = (ret >= size) ? size-1 : ret;
121 memcpy(dest, src, len);
122 dest[len] = '\0';
124 return ret;
126 EXPORT_SYMBOL(strlcpy);
127 #endif
129 #ifndef __HAVE_ARCH_STRCAT
131 * strcat - Append one %NUL-terminated string to another
132 * @dest: The string to be appended to
133 * @src: The string to append to it
135 char * strcat(char * dest, const char * src)
137 char *tmp = dest;
139 while (*dest)
140 dest++;
141 while ((*dest++ = *src++) != '\0')
144 return tmp;
146 #endif
148 #ifndef __HAVE_ARCH_STRNCAT
150 * strncat - Append a length-limited, %NUL-terminated string to another
151 * @dest: The string to be appended to
152 * @src: The string to append to it
153 * @count: The maximum numbers of bytes to copy
155 * Note that in contrast to strncpy, strncat ensures the result is
156 * terminated.
158 char * strncat(char *dest, const char *src, size_t count)
160 char *tmp = dest;
162 if (count) {
163 while (*dest)
164 dest++;
165 while ((*dest++ = *src++)) {
166 if (--count == 0) {
167 *dest = '\0';
168 break;
173 return tmp;
175 #endif
177 #ifndef __HAVE_ARCH_STRLCAT
179 * strlcat - Append a length-limited, %NUL-terminated string to another
180 * @dest: The string to be appended to
181 * @src: The string to append to it
182 * @count: The size of the destination buffer.
184 size_t strlcat(char *dest, const char *src, size_t count)
186 size_t dsize = strlen(dest);
187 size_t len = strlen(src);
188 size_t res = dsize + len;
190 /* This would be a bug */
191 BUG_ON(dsize >= count);
193 dest += dsize;
194 count -= dsize;
195 if (len >= count)
196 len = count-1;
197 memcpy(dest, src, len);
198 dest[len] = 0;
199 return res;
201 EXPORT_SYMBOL(strlcat);
202 #endif
204 #ifndef __HAVE_ARCH_STRCMP
206 * strcmp - Compare two strings
207 * @cs: One string
208 * @ct: Another string
210 int strcmp(const char * cs,const char * ct)
212 register signed char __res;
214 while (1) {
215 if ((__res = *cs - *ct++) != 0 || !*cs++)
216 break;
219 return __res;
221 #endif
223 #ifndef __HAVE_ARCH_STRNCMP
225 * strncmp - Compare two length-limited strings
226 * @cs: One string
227 * @ct: Another string
228 * @count: The maximum number of bytes to compare
230 int strncmp(const char * cs,const char * ct,size_t count)
232 register signed char __res = 0;
234 while (count) {
235 if ((__res = *cs - *ct++) != 0 || !*cs++)
236 break;
237 count--;
240 return __res;
242 #endif
244 #ifndef __HAVE_ARCH_STRCHR
246 * strchr - Find the first occurrence of a character in a string
247 * @s: The string to be searched
248 * @c: The character to search for
250 char * strchr(const char * s, int c)
252 for(; *s != (char) c; ++s)
253 if (*s == '\0')
254 return NULL;
255 return (char *) s;
257 #endif
259 #ifndef __HAVE_ARCH_STRRCHR
261 * strrchr - Find the last occurrence of a character in a string
262 * @s: The string to be searched
263 * @c: The character to search for
265 char * strrchr(const char * s, int c)
267 const char *p = s + strlen(s);
268 do {
269 if (*p == (char)c)
270 return (char *)p;
271 } while (--p >= s);
272 return NULL;
274 #endif
276 #ifndef __HAVE_ARCH_STRNCHR
278 * strnchr - Find a character in a length limited string
279 * @s: The string to be searched
280 * @count: The number of characters to be searched
281 * @c: The character to search for
283 char *strnchr(const char *s, size_t count, int c)
285 for (; count-- && *s != '\0'; ++s)
286 if (*s == (char) c)
287 return (char *) s;
288 return NULL;
290 #endif
292 #ifndef __HAVE_ARCH_STRLEN
294 * strlen - Find the length of a string
295 * @s: The string to be sized
297 size_t strlen(const char * s)
299 const char *sc;
301 for (sc = s; *sc != '\0'; ++sc)
302 /* nothing */;
303 return sc - s;
305 #endif
307 #ifndef __HAVE_ARCH_STRNLEN
309 * strnlen - Find the length of a length-limited string
310 * @s: The string to be sized
311 * @count: The maximum number of bytes to search
313 size_t strnlen(const char * s, size_t count)
315 const char *sc;
317 for (sc = s; count-- && *sc != '\0'; ++sc)
318 /* nothing */;
319 return sc - s;
321 #endif
323 #ifndef __HAVE_ARCH_STRSPN
325 * strspn - Calculate the length of the initial substring of @s which only
326 * contain letters in @accept
327 * @s: The string to be searched
328 * @accept: The string to search for
330 size_t strspn(const char *s, const char *accept)
332 const char *p;
333 const char *a;
334 size_t count = 0;
336 for (p = s; *p != '\0'; ++p) {
337 for (a = accept; *a != '\0'; ++a) {
338 if (*p == *a)
339 break;
341 if (*a == '\0')
342 return count;
343 ++count;
346 return count;
349 EXPORT_SYMBOL(strspn);
350 #endif
353 * strcspn - Calculate the length of the initial substring of @s which does
354 * not contain letters in @reject
355 * @s: The string to be searched
356 * @reject: The string to avoid
358 size_t strcspn(const char *s, const char *reject)
360 const char *p;
361 const char *r;
362 size_t count = 0;
364 for (p = s; *p != '\0'; ++p) {
365 for (r = reject; *r != '\0'; ++r) {
366 if (*p == *r)
367 return count;
369 ++count;
372 return count;
375 #ifndef __HAVE_ARCH_STRPBRK
377 * strpbrk - Find the first occurrence of a set of characters
378 * @cs: The string to be searched
379 * @ct: The characters to search for
381 char * strpbrk(const char * cs,const char * ct)
383 const char *sc1,*sc2;
385 for( sc1 = cs; *sc1 != '\0'; ++sc1) {
386 for( sc2 = ct; *sc2 != '\0'; ++sc2) {
387 if (*sc1 == *sc2)
388 return (char *) sc1;
391 return NULL;
393 #endif
395 #ifndef __HAVE_ARCH_STRSEP
397 * strsep - Split a string into tokens
398 * @s: The string to be searched
399 * @ct: The characters to search for
401 * strsep() updates @s to point after the token, ready for the next call.
403 * It returns empty tokens, too, behaving exactly like the libc function
404 * of that name. In fact, it was stolen from glibc2 and de-fancy-fied.
405 * Same semantics, slimmer shape. ;)
407 char * strsep(char **s, const char *ct)
409 char *sbegin = *s, *end;
411 if (sbegin == NULL)
412 return NULL;
414 end = strpbrk(sbegin, ct);
415 if (end)
416 *end++ = '\0';
417 *s = end;
419 return sbegin;
422 EXPORT_SYMBOL(strsep);
423 #endif
425 #ifndef __HAVE_ARCH_MEMSET
427 * memset - Fill a region of memory with the given value
428 * @s: Pointer to the start of the area.
429 * @c: The byte to fill the area with
430 * @count: The size of the area.
432 * Do not use memset() to access IO space, use memset_io() instead.
434 void * memset(void * s,int c,size_t count)
436 char *xs = (char *) s;
438 while (count--)
439 *xs++ = c;
441 return s;
443 #endif
445 #ifndef __HAVE_ARCH_BCOPY
447 * bcopy - Copy one area of memory to another
448 * @src: Where to copy from
449 * @dest: Where to copy to
450 * @count: The size of the area.
452 * Note that this is the same as memcpy(), with the arguments reversed.
453 * memcpy() is the standard, bcopy() is a legacy BSD function.
455 * You should not use this function to access IO space, use memcpy_toio()
456 * or memcpy_fromio() instead.
458 void bcopy(const void * srcp, void * destp, size_t count)
460 const char *src = srcp;
461 char *dest = destp;
463 while (count--)
464 *dest++ = *src++;
466 #endif
468 #ifndef __HAVE_ARCH_MEMCPY
470 * memcpy - Copy one area of memory to another
471 * @dest: Where to copy to
472 * @src: Where to copy from
473 * @count: The size of the area.
475 * You should not use this function to access IO space, use memcpy_toio()
476 * or memcpy_fromio() instead.
478 void * memcpy(void * dest,const void *src,size_t count)
480 char *tmp = (char *) dest, *s = (char *) src;
482 while (count--)
483 *tmp++ = *s++;
485 return dest;
487 #endif
489 #ifndef __HAVE_ARCH_MEMMOVE
491 * memmove - Copy one area of memory to another
492 * @dest: Where to copy to
493 * @src: Where to copy from
494 * @count: The size of the area.
496 * Unlike memcpy(), memmove() copes with overlapping areas.
498 void * memmove(void * dest,const void *src,size_t count)
500 char *tmp, *s;
502 if (dest <= src) {
503 tmp = (char *) dest;
504 s = (char *) src;
505 while (count--)
506 *tmp++ = *s++;
508 else {
509 tmp = (char *) dest + count;
510 s = (char *) src + count;
511 while (count--)
512 *--tmp = *--s;
515 return dest;
517 #endif
519 #ifndef __HAVE_ARCH_MEMCMP
521 * memcmp - Compare two areas of memory
522 * @cs: One area of memory
523 * @ct: Another area of memory
524 * @count: The size of the area.
526 int memcmp(const void * cs,const void * ct,size_t count)
528 const unsigned char *su1, *su2;
529 int res = 0;
531 for( su1 = cs, su2 = ct; 0 < count; ++su1, ++su2, count--)
532 if ((res = *su1 - *su2) != 0)
533 break;
534 return res;
536 #endif
538 #ifndef __HAVE_ARCH_MEMSCAN
540 * memscan - Find a character in an area of memory.
541 * @addr: The memory area
542 * @c: The byte to search for
543 * @size: The size of the area.
545 * returns the address of the first occurrence of @c, or 1 byte past
546 * the area if @c is not found
548 void * memscan(void * addr, int c, size_t size)
550 unsigned char * p = (unsigned char *) addr;
552 while (size) {
553 if (*p == c)
554 return (void *) p;
555 p++;
556 size--;
558 return (void *) p;
560 #endif
562 #ifndef __HAVE_ARCH_STRSTR
564 * strstr - Find the first substring in a %NUL terminated string
565 * @s1: The string to be searched
566 * @s2: The string to search for
568 char * strstr(const char * s1,const char * s2)
570 int l1, l2;
572 l2 = strlen(s2);
573 if (!l2)
574 return (char *) s1;
575 l1 = strlen(s1);
576 while (l1 >= l2) {
577 l1--;
578 if (!memcmp(s1,s2,l2))
579 return (char *) s1;
580 s1++;
582 return NULL;
584 #endif
586 #ifndef __HAVE_ARCH_MEMCHR
588 * memchr - Find a character in an area of memory.
589 * @s: The memory area
590 * @c: The byte to search for
591 * @n: The size of the area.
593 * returns the address of the first occurrence of @c, or %NULL
594 * if @c is not found
596 void *memchr(const void *s, int c, size_t n)
598 const unsigned char *p = s;
599 while (n-- != 0) {
600 if ((unsigned char)c == *p++) {
601 return (void *)(p-1);
604 return NULL;
607 #endif