diff options
Diffstat (limited to 'usr/include/fnmatch.h')
-rw-r--r-- | usr/include/fnmatch.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/usr/include/fnmatch.h b/usr/include/fnmatch.h new file mode 100644 index 0000000..0d88140 --- /dev/null +++ b/usr/include/fnmatch.h @@ -0,0 +1,15 @@ +#ifndef _FNMATCH_H +#define _FNMATCH_H + +#include <klibc/extern.h> + +#define FNM_NOMATCH 1 + +#define FNM_PATHNAME 1 +#define FNM_FILE_NAME FNM_PATHNAME +#define FNM_NOESCAPE 2 +#define FNM_PERIOD 4 + +__extern int fnmatch(const char *, const char *, int); + +#endif /* _FNMATCH_H */ |