summaryrefslogtreecommitdiffstats
path: root/include/fnmatch.h
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1996-10-23 16:42:33 +0000
committerache <ache@FreeBSD.org>1996-10-23 16:42:33 +0000
commit0732ee025a9b998b18effcf151b262b3401c5fbb (patch)
tree3de27ef5bcf1144ab28fb530f6e9f4e497ca41c4 /include/fnmatch.h
parent392b773de0d2e240c8b31e37463505fff384909c (diff)
downloadFreeBSD-src-0732ee025a9b998b18effcf151b262b3401c5fbb.zip
FreeBSD-src-0732ee025a9b998b18effcf151b262b3401c5fbb.tar.gz
GNU-style changes:
1) Rename FNM_ICASE to FNM_CASEFOLD 2) Add FNM_LEADING_DIR
Diffstat (limited to 'include/fnmatch.h')
-rw-r--r--include/fnmatch.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/fnmatch.h b/include/fnmatch.h
index c664422..30322e9 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 <sys/cdefs.h>
__BEGIN_DECLS
-#ifndef _POSIX_SOURCE
int fnmatch __P((const char *, const char *, int));
-#endif
__END_DECLS
#endif /* !_FNMATCH_H_ */
OpenPOWER on IntegriCloud