mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
18 lines
472 B
C
18 lines
472 B
C
#ifndef COSMOPOLITAN_THIRD_PARTY_REGEX_FNMATCH_H_
|
|
#define COSMOPOLITAN_THIRD_PARTY_REGEX_FNMATCH_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
#define FNM_PATHNAME 0x1
|
|
#define FNM_NOESCAPE 0x2
|
|
#define FNM_PERIOD 0x4
|
|
#define FNM_LEADING_DIR 0x8
|
|
#define FNM_CASEFOLD 0x10
|
|
#define FNM_FILE_NAME FNM_PATHNAME
|
|
|
|
#define FNM_NOMATCH 1
|
|
#define FNM_NOSYS (-1)
|
|
|
|
int fnmatch(const char *, const char *, int);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_THIRD_PARTY_REGEX_FNMATCH_H_ */
|