From 3f038d9a524ac62a0f045dc9a8aace4e3ddda201 Mon Sep 17 00:00:00 2001 From: Gitea Date: Tue, 8 Dec 2020 16:22:10 -0600 Subject: [PATCH] Full fnmatch.h definition --- include/fnmatch.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 include/fnmatch.h diff --git a/include/fnmatch.h b/include/fnmatch.h new file mode 100644 index 0000000..ada2bc9 --- /dev/null +++ b/include/fnmatch.h @@ -0,0 +1,11 @@ +#ifndef _FNMATCH_H +#define _FNMATCH_H + +#define FNM_NOMATCH 0 +#define FNM_PATHNAME 1 +#define FNM_PERIOD 2 +#define FNM_NOESCAPE 3 + +int fnmatch(const char *, const char *, int); + +#endif \ No newline at end of file