LibC: Add FNM_CASEFOLD and FNM_IGNORECASE

These are part of POSIX issue 8
This commit is contained in:
2026-03-25 04:27:00 +02:00
parent e9c81477d7
commit d9ca25b796
2 changed files with 14 additions and 2 deletions

View File

@@ -11,6 +11,8 @@ __BEGIN_DECLS
#define FNM_PATHNAME 0x01
#define FNM_PERIOD 0x02
#define FNM_NOESCAPE 0x04
#define FNM_CASEFOLD 0x08
#define FNM_IGNORECASE FNM_CASEFOLD
int fnmatch(const char* pattern, const char* string, int flags);