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 (const char *pattern
, const char *string
, int flags
)
60 register const char *p
= pattern
, *n
= string
;
63 /* Note that this evaluates C many times. */
64 # define FOLD(c) ((flags & FNM_CASEFOLD) && ISUPPER (c) ? tolower (c) : (c))
66 while ((c
= *p
++) != '\0')
75 else if ((flags
& FNM_FILE_NAME
) && *n
== '/')
77 else if ((flags
& FNM_PERIOD
) && *n
== '.' &&
78 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
83 if (!(flags
& FNM_NOESCAPE
))
87 /* Trailing \ loses. */
96 if ((flags
& FNM_PERIOD
) && *n
== '.' &&
97 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
100 for (c
= *p
++; c
== '?' || c
== '*'; c
= *p
++)
102 if ((flags
& FNM_FILE_NAME
) && *n
== '/')
103 /* A slash does not match a wildcard under FNM_FILE_NAME. */
107 /* A ? needs to match one character. */
109 /* There isn't another character; no match. */
112 /* One character of the string is consumed in matching
113 this ? wildcard, so *??? won't match if there are
114 less than three characters. */
123 char c1
= (!(flags
& FNM_NOESCAPE
) && c
== '\\') ? *p
: c
;
125 for (--p
; *n
!= '\0'; ++n
)
126 if ((c
== '[' || FOLD (*n
) == c1
) &&
127 fnmatch (p
, n
, flags
& ~FNM_PERIOD
) == 0)
134 /* Nonzero if the sense of the character class is inverted. */
140 if ((flags
& FNM_PERIOD
) && *n
== '.' &&
141 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
144 not = (*p
== '!' || *p
== '^');
151 register char cstart
= c
, cend
= c
;
153 if (!(flags
& FNM_NOESCAPE
) && c
== '\\')
157 cstart
= cend
= *p
++;
160 cstart
= cend
= FOLD (cstart
);
163 /* [ (unterminated) loses. */
169 if ((flags
& FNM_FILE_NAME
) && c
== '/')
170 /* [/] can never match. */
173 if (c
== '-' && *p
!= ']')
176 if (!(flags
& FNM_NOESCAPE
) && cend
== '\\')
185 if (FOLD (*n
) >= cstart
&& FOLD (*n
) <= cend
)
196 /* Skip the rest of the [...] that already matched. */
200 /* [... (unterminated) loses. */
204 if (!(flags
& FNM_NOESCAPE
) && c
== '\\')
208 /* XXX 1003.2d11 is unclear if this is right. */
228 if ((flags
& FNM_LEADING_DIR
) && *n
== '/')
229 /* The FNM_LEADING_DIR flag says that "foo*" matches "foobar/frobozz". */
237 #endif /* _LIBC or not __GNU_LIBRARY__. */