strncase.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* Compare at most N characters of two strings without taking care for
  2. the case.
  3. Copyright (C) 1992-2019 Free Software Foundation, Inc.
  4. This file is part of the GNU C Library.
  5. The GNU C Library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Lesser General Public
  7. License as published by the Free Software Foundation; either
  8. version 2.1 of the License, or (at your option) any later version.
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Lesser General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with the GNU C Library; if not, see
  15. <http://www.gnu.org/licenses/>. */
  16. #ifdef HAVE_CONFIG_H
  17. # include <config.h>
  18. #endif
  19. #include <string.h>
  20. #include <ctype.h>
  21. #ifndef weak_alias
  22. # define __strncasecmp strncasecmp
  23. # define TOLOWER(Ch) tolower (Ch)
  24. #else
  25. # include <locale/localeinfo.h>
  26. # ifdef USE_IN_EXTENDED_LOCALE_MODEL
  27. # define __strncasecmp __strncasecmp_l
  28. # endif
  29. # define TOLOWER(Ch) __tolower_l ((Ch), loc)
  30. #endif
  31. #ifdef USE_IN_EXTENDED_LOCALE_MODEL
  32. # define LOCALE_PARAM , locale_t loc
  33. #else
  34. # define LOCALE_PARAM
  35. #endif
  36. /* Compare no more than N characters of S1 and S2,
  37. ignoring case, returning less than, equal to or
  38. greater than zero if S1 is lexicographically less
  39. than, equal to or greater than S2. */
  40. int
  41. __strncasecmp (const char *s1, const char *s2, size_t n LOCALE_PARAM)
  42. {
  43. #if defined _LIBC && !defined USE_IN_EXTENDED_LOCALE_MODEL
  44. locale_t loc = _NL_CURRENT_LOCALE;
  45. #endif
  46. const unsigned char *p1 = (const unsigned char *) s1;
  47. const unsigned char *p2 = (const unsigned char *) s2;
  48. int result;
  49. if (p1 == p2 || n == 0)
  50. return 0;
  51. while ((result = TOLOWER (*p1) - TOLOWER (*p2++)) == 0)
  52. if (*p1++ == '\0' || --n == 0)
  53. break;
  54. return result;
  55. }
  56. #ifndef __strncasecmp
  57. weak_alias (__strncasecmp, strncasecmp)
  58. #endif