fnmatch.h
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:3k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /* Copyright (C) 1991, 1992, 1993 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, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  15. /*
  16.  *  $Id: fnmatch.h,v 1.1 1997/02/23 15:54:20 eric Rel $
  17.  */
  18. #ifndef _FNMATCH_H
  19. #define _FNMATCH_H 1
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #if defined (__cplusplus) || (defined (__STDC__) && __STDC__)
  24. #undef __P
  25. #define __P(protos) protos
  26. #else /* Not C++ or ANSI C.  */
  27. #undef __P
  28. #define __P(protos) ()
  29. /* We can get away without defining `const' here only because in this file
  30.    it is used only inside the prototype for `fnmatch', which is elided in
  31.    non-ANSI C where `const' is problematical.  */
  32. #endif /* C++ or ANSI C.  */
  33. /* We #undef these before defining them because some losing systems
  34.    (HP-UX A.08.07 for example) define these in <unistd.h>.  */
  35. #undef FNM_PATHNAME
  36. #undef FNM_NOESCAPE
  37. #undef FNM_PERIOD
  38. /* Bits set in the FLAGS argument to `fnmatch'.  */
  39. #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'.  */
  40. #define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars.  */
  41. #define FNM_PERIOD (1 << 2) /* Leading `.' is matched only explicitly.  */
  42. #if !defined (_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 2 || defined (_GNU_SOURCE)
  43. #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name.  */
  44. #define FNM_LEADING_DIR (1 << 3) /* Ignore `/...' after a match.  */
  45. #define FNM_CASEFOLD (1 << 4) /* Compare without regard to case.  */
  46. #endif
  47. #ifndef FNM_FILE_NAME
  48.   /*
  49.    * Apparently GNU libc doesn't define this thing.
  50.    */
  51. #define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name.  */
  52. #endif
  53. /* Value returned by `fnmatch' if STRING does not match PATTERN.  */
  54. #define FNM_NOMATCH 1
  55. /* Match STRING against the filename pattern PATTERN,
  56.    returning zero if it matches, FNM_NOMATCH if not.  */
  57. extern int fnmatch __P ((const char *__pattern, const char *__string,
  58.  int __flags));
  59. #ifdef __cplusplus
  60. }
  61. #endif
  62. #endif /* fnmatch.h */