1 /* glob.h -- Find a path matching a pattern.
3 Copyright (C) 2005-2007, 2009-2016 Free Software Foundation, Inc.
5 Written by Derek Price <derek@ximbiot.com> & Paul Eggert <eggert@CS.UCLA.EDU>
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 3, or (at your option)
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.
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/>. */
23 #if @HAVE_SYS_CDEFS_H@
24 # include <sys/cdefs.h>
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'. */
36 # define __BEGIN_DECLS extern "C" {
37 # define __END_DECLS }
39 # define __BEGIN_DECLS
50 /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */
52 /* The definition of _GL_ARG_NONNULL is copied here. */
54 /* The definition of _GL_WARN_ON_USE is copied here. */
57 # define __size_t size_t
65 #define globfree rpl_globfree
66 #define glob_pattern_p rpl_glob_pattern_p
68 #define __GLOB_GNULIB 1
70 /* Now the standard GNU C Library header should work. */
71 #include "glob-libc.h"
74 typedef int (*_gl_glob_errfunc_fn
) (const char *, int);
77 #if defined __cplusplus && defined GNULIB_NAMESPACE
80 # undef glob_pattern_p
81 _GL_CXXALIAS_RPL (glob
, int, (const char *_Restrict_ __pattern
, int __flags
,
82 _gl_glob_errfunc_fn __errfunc
,
83 glob_t
*_Restrict_ __pglob
));
84 _GL_CXXALIAS_RPL (globfree
, void, (glob_t
*__pglob
));
85 _GL_CXXALIAS_RPL (glob_pattern_p
, int, (const char *__pattern
, int __quote
));
86 # if 0 /* The C function name is rpl_glob, not glob. */
87 _GL_CXXALIASWARN (glob
);
88 _GL_CXXALIASWARN (globfree
);
89 _GL_CXXALIASWARN (glob_pattern_p
);
93 #endif /* _GL_GLOB_H */