a2a704366d9b73f0733228001aab1e69a5449b56
[gnulib.git] / lib / glob.in.h
1 /* glob.h -- Find a path matching a pattern.
2
3    Copyright (C) 2005-2007, 2009-2012 Free Software Foundation, Inc.
4
5    Written by Derek Price <derek@ximbiot.com> & Paul Eggert <eggert@CS.UCLA.EDU>
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2, or (at your option)
10    any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, see <http://www.gnu.org/licenses/>.  */
19
20 #ifndef _GL_GLOB_H
21 #define _GL_GLOB_H
22
23 #if @HAVE_SYS_CDEFS_H@
24 # include <sys/cdefs.h>
25 #endif
26
27 #include <stddef.h>
28
29 /* On some systems, such as AIX 5.1, <sys/stat.h> does a "#define stat stat64".
30    Make sure this definition is seen before glob-libc.h defines types that
31    rely on 'struct stat'.  */
32 #include <sys/stat.h>
33
34 #ifndef __BEGIN_DECLS
35 # ifdef __cplusplus
36 #  define __BEGIN_DECLS  extern "C" {
37 #  define __END_DECLS    }
38 # else
39 #  define __BEGIN_DECLS
40 #  define __END_DECLS
41 # endif
42 #endif
43 #ifndef __THROW
44 # define __THROW
45 #endif
46
47 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here.  */
48
49 /* The definition of _GL_ARG_NONNULL is copied here.  */
50
51 /* The definition of _GL_WARN_ON_USE is copied here.  */
52
53 #ifndef __size_t
54 # define __size_t       size_t
55 #endif
56 #ifndef __USE_GNU
57 # define __USE_GNU    1
58 #endif
59
60
61 #define glob rpl_glob
62 #define globfree rpl_globfree
63 #define glob_pattern_p rpl_glob_pattern_p
64
65 #define __GLOB_GNULIB 1
66
67 /* Now the standard GNU C Library header should work.  */
68 #include "glob-libc.h"
69
70 __BEGIN_DECLS
71 typedef int (*_gl_glob_errfunc_fn) (const char *, int);
72 __END_DECLS
73
74 #if defined __cplusplus && defined GNULIB_NAMESPACE
75 # undef glob
76 # undef globfree
77 # undef glob_pattern_p
78 _GL_CXXALIAS_RPL (glob, int, (const char *_Restrict_ __pattern, int __flags,
79                               _gl_glob_errfunc_fn __errfunc,
80                               glob_t *_Restrict_ __pglob));
81 _GL_CXXALIAS_RPL (globfree, void, (glob_t *__pglob));
82 _GL_CXXALIAS_RPL (glob_pattern_p, int, (const char *__pattern, int __quote));
83 # if 0  /* The C function name is rpl_glob, not glob.  */
84 _GL_CXXALIASWARN (glob);
85 _GL_CXXALIASWARN (globfree);
86 _GL_CXXALIASWARN (glob_pattern_p);
87 # endif
88 #endif
89
90 #endif /* _GL_GLOB_H */