c-strcase.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* Case-insensitive string comparison functions in C locale.
  2. Copyright (C) 1995-1996, 2001, 2003, 2005, 2009-2024 Free Software
  3. Foundation, Inc.
  4. This file is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as
  6. published by the Free Software Foundation; either version 2.1 of the
  7. License, or (at your option) any later version.
  8. This file is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with this program. If not, see <https://www.gnu.org/licenses/>. */
  14. #ifndef C_STRCASE_H
  15. #define C_STRCASE_H
  16. /* This file uses _GL_ATTRIBUTE_PURE. */
  17. #if !_GL_CONFIG_H_INCLUDED
  18. #error "Please include config.h first."
  19. #endif
  20. #include <stddef.h>
  21. /* The functions defined in this file assume the "C" locale and a character
  22. set without diacritics (ASCII-US or EBCDIC-US or something like that).
  23. Even if the "C" locale on a particular system is an extension of the ASCII
  24. character set (like on BeOS, where it is UTF-8, or on AmigaOS, where it
  25. is ISO-8859-1), the functions in this file recognize only the ASCII
  26. characters. More precisely, one of the string arguments must be an ASCII
  27. string; the other one can also contain non-ASCII characters (but then
  28. the comparison result will be nonzero). */
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. /* Compare strings S1 and S2, ignoring case, returning less than, equal to or
  33. greater than zero if S1 is lexicographically less than, equal to or greater
  34. than S2. */
  35. extern int c_strcasecmp (const char *s1, const char *s2) _GL_ATTRIBUTE_PURE;
  36. /* Compare no more than N characters of strings S1 and S2, ignoring case,
  37. returning less than, equal to or greater than zero if S1 is
  38. lexicographically less than, equal to or greater than S2. */
  39. extern int c_strncasecmp (const char *s1, const char *s2, size_t n)
  40. _GL_ATTRIBUTE_PURE;
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif /* C_STRCASE_H */