fnmatch.h 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* Copyright (C) 1991-2022 Free Software Foundation, Inc.
  2. NOTE: The canonical source of this file is maintained with the GNU C Library.
  3. Bugs can be reported to bug-glibc@prep.ai.mit.edu.
  4. This program is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option) any
  7. later version.
  8. This program 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 General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program; if not, write to the Free Software
  14. Foundation, 51 Franklin Street - Fifth Floor,
  15. Boston, MA 02110-1301, USA. */
  16. #ifndef _FNMATCH_H
  17. #define _FNMATCH_H 1
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21. #if defined (__cplusplus) || (defined (__STDC__) && __STDC__)
  22. #undef __P
  23. #define __P(args) args
  24. #else /* Not C++ or ANSI C. */
  25. #undef __P
  26. #define __P(args) ()
  27. /* We can get away without defining `const' here only because in this file
  28. it is used only inside the prototype for `fnmatch', which is elided in
  29. non-ANSI C where `const' is problematical. */
  30. #endif /* C++ or ANSI C. */
  31. /* We #undef these before defining them because some losing systems
  32. (HP-UX A.08.07 for example) define these in <unistd.h>. */
  33. #undef FNM_PATHNAME
  34. #undef FNM_NOESCAPE
  35. #undef FNM_PERIOD
  36. /* Bits set in the FLAGS argument to `fnmatch'. */
  37. #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */
  38. #define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars. */
  39. #define FNM_PERIOD (1 << 2) /* Leading `.' is matched only explicitly. */
  40. #if !defined (_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 2 || defined (_GNU_SOURCE)
  41. #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
  42. #define FNM_LEADING_DIR (1 << 3) /* Ignore `/...' after a match. */
  43. #define FNM_CASEFOLD (1 << 4) /* Compare without regard to case. */
  44. #endif
  45. /* Value returned by `fnmatch' if STRING does not match PATTERN. */
  46. #define FNM_NOMATCH 1
  47. /* Match STRING against the filename pattern PATTERN,
  48. returning zero if it matches, FNM_NOMATCH if not. */
  49. extern int fnmatch __P ((const char *__pattern, const char *__string,
  50. int __flags));
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54. #endif /* fnmatch.h */