1 /* Copyright (C) 1991, 1992, 1993 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. */
27 /* Comment out all this code if we are using the GNU C Library, and are not
28 actually compiling the library itself. This code is part of the GNU C
29 Library, but also included in many other GNU distributions. Compiling
30 and linking in this code is a waste when using the GNU C library
31 (especially if it is a shared library). Rather than having every GNU
32 program understand `configure --with-gnu-libc' and omit the object files,
33 it is simpler to just do this in the source for each such file. */
35 #if defined (_LIBC) || !defined (__GNU_LIBRARY__)
42 /* Match STRING against the filename pattern PATTERN, returning zero if
43 it matches, nonzero if not. */
45 fnmatch (pattern
, string
, flags
)
50 register const char *p
= pattern
, *n
= string
;
53 /* Note that this evalutes C many times. */
54 #define FOLD(c) ((flags & FNM_CASEFOLD) && isupper (c) ? tolower (c) : (c))
56 while ((c
= *p
++) != '\0')
65 else if ((flags
& FNM_FILE_NAME
) && *n
== '/')
67 else if ((flags
& FNM_PERIOD
) && *n
== '.' &&
68 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
73 if (!(flags
& FNM_NOESCAPE
))
83 if ((flags
& FNM_PERIOD
) && *n
== '.' &&
84 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
87 for (c
= *p
++; c
== '?' || c
== '*'; c
= *p
++, ++n
)
88 if (((flags
& FNM_FILE_NAME
) && *n
== '/') ||
89 (c
== '?' && *n
== '\0'))
96 char c1
= (!(flags
& FNM_NOESCAPE
) && c
== '\\') ? *p
: c
;
98 for (--p
; *n
!= '\0'; ++n
)
99 if ((c
== '[' || FOLD (*n
) == c1
) &&
100 fnmatch (p
, n
, flags
& ~FNM_PERIOD
) == 0)
107 /* Nonzero if the sense of the character class is inverted. */
113 if ((flags
& FNM_PERIOD
) && *n
== '.' &&
114 (n
== string
|| ((flags
& FNM_FILE_NAME
) && n
[-1] == '/')))
117 not = (*p
== '!' || *p
== '^');
124 register char cstart
= c
, cend
= c
;
126 if (!(flags
& FNM_NOESCAPE
) && c
== '\\')
127 cstart
= cend
= *p
++;
129 cstart
= cend
= FOLD (cstart
);
132 /* [ (unterminated) loses. */
138 if ((flags
& FNM_FILE_NAME
) && c
== '/')
139 /* [/] can never match. */
142 if (c
== '-' && *p
!= ']')
145 if (!(flags
& FNM_NOESCAPE
) && cend
== '\\')
154 if (FOLD (*n
) >= cstart
&& FOLD (*n
) <= cend
)
165 /* Skip the rest of the [...] that already matched. */
169 /* [... (unterminated) loses. */
173 if (!(flags
& FNM_NOESCAPE
) && c
== '\\')
174 /* XXX 1003.2d11 is unclear if this is right. */
193 if ((flags
& FNM_LEADING_DIR
) && *n
== '/')
194 /* The FNM_LEADING_DIR flag says that "foo*" matches "foobar/frobozz". */
200 #endif /* _LIBC or not __GNU_LIBRARY__. */