1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #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
|