Files
Redox-From-Scratch/tools/bin/x86_64-unknown-redox/toolchain/x86_64-unknown-redox/include/fnmatch.h
2024-12-16 20:57:17 -08:00

25 lines
382 B
C

#ifndef _RELIBC_FNMATCH_H
#define _RELIBC_FNMATCH_H
#define FNM_NOMATCH 1
#define FNM_NOESCAPE 1
#define FNM_PATHNAME 2
#define FNM_PERIOD 4
#define FNM_CASEFOLD 8
#ifdef __cplusplus
extern "C" {
#endif // __cplusplus
int fnmatch(const char *pattern, const char *input, int flags);
#ifdef __cplusplus
} // extern "C"
#endif // __cplusplus
#endif /* _RELIBC_FNMATCH_H */