From 085d68ca3b32f461a9696ba337611b65e7a3e6a2 Mon Sep 17 00:00:00 2001 From: wosch Date: Sun, 20 Oct 1996 15:15:59 +0000 Subject: add flag FNM_ICASE for case insensitve search Reviewed by: ache --- include/fnmatch.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/fnmatch.h') diff --git a/include/fnmatch.h b/include/fnmatch.h index 7a0e582..c664422 100644 --- a/include/fnmatch.h +++ b/include/fnmatch.h @@ -41,6 +41,7 @@ #define FNM_NOESCAPE 0x01 /* Disable backslash escaping. */ #define FNM_PATHNAME 0x02 /* Slash must be matched by slash. */ #define FNM_PERIOD 0x04 /* Period must be matched by period. */ +#define FNM_ICASE 0x08 /* case insensitive search */ #include -- cgit v1.1