123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #ifndef _FNMATCH_H_
- #define _FNMATCH_H_
- #define FNM_NOMATCH 1
- #define FNM_NOSYS 2
- #define FNM_NORES 3
- #define FNM_NOESCAPE 0x01
- #define FNM_PATHNAME 0x02
- #define FNM_PERIOD 0x04
- #define FNM_CASEFOLD 0x08
- #define FNM_LEADING_DIR 0x10
- int fnmatch(const char *, const char *, int)
- #endif
|