]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/enh_fnmatch.h
Merge in all the low-risk changes from the Windows branch.
[bacula/bacula] / bacula / src / lib / enh_fnmatch.h
1 /* Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
2
3 NOTE: The canonical source of this file is maintained with the GNU C Library.
4 Bugs can be reported to bug-glibc@prep.ai.mit.edu.
5
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 /* Modified version of fnmatch.h - Robert Nelson */
21
22 #ifndef _ENH_FNMATCH_H
23
24 #define _ENH_FNMATCH_H  1
25
26 #ifdef  __cplusplus
27 extern "C" {
28 #endif
29
30 #if defined (__cplusplus) || (defined (__STDC__) && __STDC__)
31 #undef  __P
32 #define __P(protos)     protos
33 #else /* Not C++ or ANSI C.  */
34 #undef  __P
35 #define __P(protos)     ()
36 /* We can get away without defining `const' here only because in this file
37    it is used only inside the prototype for `fnmatch', which is elided in
38    non-ANSI C where `const' is problematical.  */
39 #endif /* C++ or ANSI C.  */
40
41
42 /* Match STRING against the filename pattern PATTERN,
43    returning zero if it matches, FNM_NOMATCH if not.  */
44 extern int enh_fnmatch __P ((const char *__pattern, const char *__string,
45                          int __flags));
46
47 #ifdef  __cplusplus
48 }
49 #endif
50
51 #endif /* fnmatch.h */