From fc00c656c96528112d05cf0edf8631bd5eaea446 Mon Sep 17 00:00:00 2001 From: Kacper Date: Sun, 7 Dec 2025 20:10:31 +0100 Subject: Add build system scaffolding and libc headers --- include/fnmatch.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 include/fnmatch.h (limited to 'include/fnmatch.h') diff --git a/include/fnmatch.h b/include/fnmatch.h new file mode 100644 index 00000000..0f3c71be --- /dev/null +++ b/include/fnmatch.h @@ -0,0 +1,13 @@ +#ifndef __FNMATCH_H__ +#define __FNMATCH_H__ + +#define FNM_PATHNAME 0x1 +#define FNM_NOESCAPE 0x2 +#define FNM_PERIOD 0x4 +#define FNM_CASEFOLD 0x8 +#define FNM_NOMATCH 1 +#define FNM_IGNORECASE FNM_CASEFOLD + +int fnmatch(const char *, const char *, int); + +#endif -- cgit v1.2.3