From d9de4eee402fc43218950538c8b0938428b5402f Mon Sep 17 00:00:00 2001 From: "Andrey A. Chernov" Date: Wed, 23 Oct 1996 16:42:33 +0000 Subject: [PATCH] GNU-style changes: 1) Rename FNM_ICASE to FNM_CASEFOLD 2) Add FNM_LEADING_DIR --- include/fnmatch.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/fnmatch.h b/include/fnmatch.h index c664422bce6..30322e99d97 100644 --- a/include/fnmatch.h +++ b/include/fnmatch.h @@ -41,14 +41,15 @@ #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 */ +#ifndef _POSIX_SOURCE +#define FNM_LEADING_DIR 0x08 /* Ignore "/*" after match */ +#define FNM_CASEFOLD 0x10 /* Case insensitive search */ +#endif #include __BEGIN_DECLS -#ifndef _POSIX_SOURCE int fnmatch __P((const char *, const char *, int)); -#endif __END_DECLS #endif /* !_FNMATCH_H_ */