123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef _FNMATCH_H_
- #define _FNMATCH_H_
- #include "php.h"
- #define FNM_NOMATCH 1
- #define FNM_NOESCAPE 0x01
- #define FNM_PATHNAME 0x02
- #define FNM_PERIOD 0x04
- #define FNM_LEADING_DIR 0x08
- #define FNM_CASEFOLD 0x10
- #define FNM_PREFIX_DIRS 0x20
- PHPAPI int fnmatch(const char *pattern, const char *string, int flags)
- #endif
|