wildmatch.h 264 B

1234567891011121314
  1. #ifndef WILDMATCH_H
  2. #define WILDMATCH_H
  3. #define WM_CASEFOLD 1
  4. #define WM_PATHNAME 2
  5. #define WM_NOMATCH 1
  6. #define WM_MATCH 0
  7. #define WM_ABORT_ALL -1
  8. #define WM_ABORT_TO_STARSTAR -2
  9. int wildmatch(const char *pattern, const char *text, unsigned int flags);
  10. #endif