1 /* Copyright (C) 1991, 1992, 1993, 1996 Free Software Foundation, Inc.
3 This library is free software; you can redistribute it and/or
4 modify it under the terms of the GNU Library General Public License as
5 published by the Free Software Foundation; either version 2 of the
6 License, or (at your option) any later version.
8 This library is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 Library General Public License for more details.
13 You should have received a copy of the GNU Library General Public
14 License along with this library; see the file COPYING.LIB. If
15 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
16 Cambridge, MA 02139, USA. */
18 /* Enable GNU extensions in fnmatch.h. */
20 # define _GNU_SOURCE 1
25 #include <linux/ctype.h>
28 /* Comment out all this code if we are using the GNU C Library, and are not
29 actually compiling the library itself. This code is part of the GNU C
30 Library, but also included in many other GNU distributions. Compiling
31 and linking in this code is a waste when using the GNU C library
32 (especially if it is a shared library). Rather than having every GNU
33 program understand `configure --with-gnu-libc' and omit the object files,
34 it is simpler to just do this in the source for each such file. */
36 # if defined (STDC_HEADERS) || !defined (isascii)
39 # define ISASCII(c) isascii(c)
42 # define ISUPPER(c) (ISASCII (c) && isupper (c))
49 /* Match STRING against the filename pattern PATTERN, returning zero if
50 it matches, nonzero if not. */
51 int fnmatch(pattern
, string
, flags
)
56 register const char *p
= pattern
, *n
= string
;
59 /* Note that this evaluates C many times. */
60 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
62 while ((c
= *p
++) != '\0') {
69 else if ((flags
& FNM_FILE_NAME
) && *n
== '/')
71 else if ((flags
& FNM_PERIOD
) && *n
== '.' &&
73 || ((flags
& FNM_FILE_NAME
)
74 && n
[-1] == '/'))) return FNM_NOMATCH
;
78 if (!(flags
& FNM_NOESCAPE
)) {
81 /* Trailing \ loses. */
90 if ((flags
& FNM_PERIOD
) && *n
== '.' &&
91 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
94 for (c
= *p
++; c
== '?' || c
== '*'; c
= *p
++) {
95 if ((flags
& FNM_FILE_NAME
) && *n
== '/')
96 /* A slash does not match a wildcard under FNM_FILE_NAME. */
99 /* A ? needs to match one character. */
101 /* There isn't another character; no match. */
104 /* One character of the string is consumed in matching
105 this ? wildcard, so *??? won't match if there are
106 less than three characters. */
115 char c1
= (!(flags
& FNM_NOESCAPE
) && c
== '\\') ? *p
: c
;
118 for (--p
; *n
!= '\0'; ++n
)
119 if ((c
== '[' || FOLD(*n
) == c1
) &&
120 fnmatch(p
, n
, flags
& ~FNM_PERIOD
) == 0)
127 /* Nonzero if the sense of the character class is inverted. */
133 if ((flags
& FNM_PERIOD
) && *n
== '.' &&
134 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
137 not = (*p
== '!' || *p
== '^');
143 register char cstart
= c
, cend
= c
;
145 if (!(flags
& FNM_NOESCAPE
) && c
== '\\') {
148 cstart
= cend
= *p
++;
151 cstart
= cend
= FOLD(cstart
);
154 /* [ (unterminated) loses. */
160 if ((flags
& FNM_FILE_NAME
) && c
== '/')
161 /* [/] can never match. */
164 if (c
== '-' && *p
!= ']') {
166 if (!(flags
& FNM_NOESCAPE
) && cend
== '\\')
175 if (FOLD(*n
) >= cstart
&& FOLD(*n
) <= cend
)
186 /* Skip the rest of the [...] that already matched. */
189 /* [... (unterminated) loses. */
193 if (!(flags
& FNM_NOESCAPE
) && c
== '\\') {
196 /* XXX 1003.2d11 is unclear if this is right. */
216 if ((flags
& FNM_LEADING_DIR
) && *n
== '/')
217 /* The FNM_LEADING_DIR flag says that "foo*" matches "foobar/frobozz". */