home *** CD-ROM | disk | FTP | other *** search
/ Zodiac Super OZ / MEDIADEPOT.ISO / FILES / 13 / DJCRX201.ZIP / include / fnmatch.h < prev    next >
C/C++ Source or Header  |  1995-03-27  |  756b  |  37 lines

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #ifndef __dj_include_fnmatch_h_
  3. #define __dj_include_fnmatch_h_
  4.  
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8.  
  9. #ifndef __dj_ENFORCE_ANSI_FREESTANDING
  10.  
  11. #ifndef __STRICT_ANSI__
  12.  
  13. #define FNM_NOESCAPE    0x01
  14. #define FNM_PATHNAME    0x02
  15. #define FNM_PERIOD    0x04
  16. #define FNM_NOCASE    0x08
  17.  
  18. #define FNM_NOMATCH    1
  19. #define FNM_ERROR    2
  20.  
  21. int fnmatch(const char *_pattern, const char *_string, int _flags);
  22.  
  23. #ifndef _POSIX_SOURCE
  24.  
  25. #endif /* !_POSIX_SOURCE */
  26. #endif /* !__STRICT_ANSI__ */
  27. #endif /* !__dj_ENFORCE_ANSI_FREESTANDING */
  28.  
  29. #ifndef __dj_ENFORCE_FUNCTION_CALLS
  30. #endif /* !__dj_ENFORCE_FUNCTION_CALLS */
  31.  
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35.  
  36. #endif /* !__dj_include_fnmatch_h_ */
  37.