1 /* Copyright (C) 1991, 1992, 1993, 1996, 1997 Free Software Foundation, Inc.
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
8 This program 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
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software Foundation,
15 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* Enable GNU extensions in fnmatch.h. */
23 # define _GNU_SOURCE 1
31 /* Comment out all this code if we are using the GNU C Library, and are not
32 actually compiling the library itself. This code is part of the GNU C
33 Library, but also included in many other GNU distributions. Compiling
34 and linking in this code is a waste when using the GNU C library
35 (especially if it is a shared library). Rather than having every GNU
36 program understand `configure --with-gnu-libc' and omit the object files,
37 it is simpler to just do this in the source for each such file. */
39 #if defined _LIBC || !defined __GNU_LIBRARY__
42 # if defined STDC_HEADERS || !defined isascii
45 # define ISASCII(c) isascii(c)
48 # define ISUPPER(c) (ISASCII (c) && isupper (c))
55 /* Match STRING against the filename pattern PATTERN, returning zero if
56 it matches, nonzero if not. */
58 fnmatch (pattern
, string
, flags
)
63 register const char *p
= pattern
, *n
= string
;
66 /* Note that this evaluates C many times. */
67 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
69 while ((c
= *p
++) != '\0')
78 else if ((flags
& FNM_FILE_NAME
) && *n
== '/')
80 else if ((flags
& FNM_PERIOD
) && *n
== '.' &&
81 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
86 if (!(flags
& FNM_NOESCAPE
))
90 /* Trailing \ loses. */
99 if ((flags
& FNM_PERIOD
) && *n
== '.' &&
100 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
103 for (c
= *p
++; c
== '?' || c
== '*'; c
= *p
++)
105 if ((flags
& FNM_FILE_NAME
) && *n
== '/')
106 /* A slash does not match a wildcard under FNM_FILE_NAME. */
110 /* A ? needs to match one character. */
112 /* There isn't another character; no match. */
115 /* One character of the string is consumed in matching
116 this ? wildcard, so *??? won't match if there are
117 less than three characters. */
126 char c1
= (!(flags
& FNM_NOESCAPE
) && c
== '\\') ? *p
: c
;
128 for (--p
; *n
!= '\0'; ++n
)
129 if ((c
== '[' || FOLD (*n
) == c1
) &&
130 fnmatch (p
, n
, flags
& ~FNM_PERIOD
) == 0)
137 /* Nonzero if the sense of the character class is inverted. */
143 if ((flags
& FNM_PERIOD
) && *n
== '.' &&
144 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
147 not = (*p
== '!' || *p
== '^');
154 register char cstart
= c
, cend
= c
;
156 if (!(flags
& FNM_NOESCAPE
) && c
== '\\')
160 cstart
= cend
= *p
++;
163 cstart
= cend
= FOLD (cstart
);
166 /* [ (unterminated) loses. */
172 if ((flags
& FNM_FILE_NAME
) && c
== '/')
173 /* [/] can never match. */
176 if (c
== '-' && *p
!= ']')
179 if (!(flags
& FNM_NOESCAPE
) && cend
== '\\')
188 if (FOLD (*n
) >= cstart
&& FOLD (*n
) <= cend
)
199 /* Skip the rest of the [...] that already matched. */
203 /* [... (unterminated) loses. */
207 if (!(flags
& FNM_NOESCAPE
) && c
== '\\')
211 /* XXX 1003.2d11 is unclear if this is right. */
231 if ((flags
& FNM_LEADING_DIR
) && *n
== '/')
232 /* The FNM_LEADING_DIR flag says that "foo*" matches "foobar/frobozz". */
240 #endif /* _LIBC or not __GNU_LIBRARY__. */