annotate glob/fnmatch.h @ 5103:e2ed74b9bfa0 after-gnuplot-split

[project @ 2004-12-28 02:43:01 by jwe]
author jwe
date Tue, 28 Dec 2004 02:43:01 +0000
parents 66d7394f5822
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
1 /* Copyright (C) 1991, 92, 93, 96, 97, 98, 99 Free Software Foundation, Inc.
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
2 This file is part of the GNU C Library.
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
3
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
4 The GNU C Library is free software; you can redistribute it and/or
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
5 modify it under the terms of the GNU Library General Public License as
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
6 published by the Free Software Foundation; either version 2 of the
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
7 License, or (at your option) any later version.
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
8
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
9 The GNU C Library is distributed in the hope that it will be useful,
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
12 Library General Public License for more details.
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
13
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
14 You should have received a copy of the GNU Library General Public
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
17 Boston, MA 02111-1307, USA. */
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
18
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
19 #ifndef _FNMATCH_H
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
20 #define _FNMATCH_H 1
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
21
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
22 #ifdef __cplusplus
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
23 extern "C" {
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
24 #endif
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
25
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
26 #if defined __cplusplus || (defined __STDC__ && __STDC__) || defined WINDOWS32
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
27 # if !defined __GLIBC__ || !defined __P
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
28 # undef __P
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
29 # define __P(protos) protos
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
30 # endif
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
31 #else /* Not C++ or ANSI C. */
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
32 # undef __P
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
33 # define __P(protos) ()
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
34 /* We can get away without defining `const' here only because in this file
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
35 it is used only inside the prototype for `fnmatch', which is elided in
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
36 non-ANSI C where `const' is problematical. */
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
37 #endif /* C++ or ANSI C. */
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
38
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
39 #ifndef const
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
40 # if (defined __STDC__ && __STDC__) || defined __cplusplus
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
41 # define __const const
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
42 # else
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
43 # define __const
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
44 # endif
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
45 #endif
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
46
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
47 /* We #undef these before defining them because some losing systems
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
48 (HP-UX A.08.07 for example) define these in <unistd.h>. */
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
49 #undef FNM_PATHNAME
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
50 #undef FNM_NOESCAPE
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
51 #undef FNM_PERIOD
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
52
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
53 /* Bits set in the FLAGS argument to `fnmatch'. */
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
54 #define FNM_PATHNAME (1 << 0) /* No wildcard can ever match `/'. */
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
55 #define FNM_NOESCAPE (1 << 1) /* Backslashes don't quote special chars. */
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
56 #define FNM_PERIOD (1 << 2) /* Leading `.' is matched only explicitly. */
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
57
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
58 #if !defined _POSIX_C_SOURCE || _POSIX_C_SOURCE < 2 || defined _GNU_SOURCE
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
59 # define FNM_FILE_NAME FNM_PATHNAME /* Preferred GNU name. */
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
60 # define FNM_LEADING_DIR (1 << 3) /* Ignore `/...' after a match. */
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
61 # define FNM_CASEFOLD (1 << 4) /* Compare without regard to case. */
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
62 #endif
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
63
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
64 /* Value returned by `fnmatch' if STRING does not match PATTERN. */
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
65 #define FNM_NOMATCH 1
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
66
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
67 /* This value is returned if the implementation does not support
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
68 `fnmatch'. Since this is not the case here it will never be
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
69 returned but the conformance test suites still require the symbol
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
70 to be defined. */
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
71 #ifdef _XOPEN_SOURCE
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
72 # define FNM_NOSYS (-1)
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
73 #endif
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
74
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
75 /* Match NAME against the filename pattern PATTERN,
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
76 returning zero if it matches, FNM_NOMATCH if not. */
4096
66d7394f5822 [project @ 2002-10-09 18:47:16 by jwe]
jwe
parents: 2755
diff changeset
77 extern int fnmatch __P ((__const char *__pattern, __const char *__name,
1313
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
78 int __flags));
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
79
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
80 #ifdef __cplusplus
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
81 }
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
82 #endif
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
83
f0dcdcc9a780 [project @ 1995-06-25 18:42:38 by jwe]
jwe
parents:
diff changeset
84 #endif /* fnmatch.h */