strcasestr.c 972 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * Copyright (C) 2002 Manuel Novoa III
  3. * Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
  4. *
  5. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. */
  7. #include "_string.h"
  8. #include <ctype.h>
  9. #ifndef __UCLIBC_HAS_XLOCALE__
  10. libc_hidden_proto(__ctype_tolower)
  11. #else
  12. libc_hidden_proto(__ctype_tolower_loc)
  13. #endif
  14. libc_hidden_proto(tolower)
  15. char *strcasestr(const char *s1, const char *s2)
  16. {
  17. register const char *s = s1;
  18. register const char *p = s2;
  19. #if 1
  20. do {
  21. if (!*p) {
  22. return (char *) s1;;
  23. }
  24. if ((*p == *s)
  25. || (tolower(*((unsigned char *)p)) == tolower(*((unsigned char *)s)))
  26. ) {
  27. ++p;
  28. ++s;
  29. } else {
  30. p = s2;
  31. if (!*s) {
  32. return NULL;
  33. }
  34. s = ++s1;
  35. }
  36. } while (1);
  37. #else
  38. while (*p && *s) {
  39. if ((*p == *s)
  40. || (tolower(*((unsigned char *)p)) == tolower(*((unsigned char *)s)))
  41. ) {
  42. ++p;
  43. ++s;
  44. } else {
  45. p = s2;
  46. s = ++s1;
  47. }
  48. }
  49. return (*p) ? NULL : (char *) s1;
  50. #endif
  51. }