* posix/glob.h (__glob_opendir_hook, __glob_readdir_hook,
[glibc.git] / posix / glob.h
blob8607e9f04c8cb14e3685d89105a889e86155240b
1 /* Copyright (C) 1991, 1992, 1995, 1996 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. */
18 #ifndef _GLOB_H
20 #define _GLOB_H 1
22 #ifdef __cplusplus
23 extern "C"
25 #endif
27 #undef __ptr_t
28 #if defined (__cplusplus) || (defined (__STDC__) && __STDC__)
29 #undef __P
30 #define __P(protos) protos
31 #define __ptr_t void *
32 #else /* Not C++ or ANSI C. */
33 #undef __P
34 #define __P(protos) ()
35 #undef const
36 #define const
37 #define __ptr_t char *
38 #endif /* C++ or ANSI C. */
40 /* Bits set in the FLAGS argument to `glob'. */
41 #define GLOB_ERR (1 << 0)/* Return on read errors. */
42 #define GLOB_MARK (1 << 1)/* Append a slash to each name. */
43 #define GLOB_NOSORT (1 << 2)/* Don't sort the names. */
44 #define GLOB_DOOFFS (1 << 3)/* Insert PGLOB->gl_offs NULLs. */
45 #define GLOB_NOCHECK (1 << 4)/* If nothing matches, return the pattern. */
46 #define GLOB_APPEND (1 << 5)/* Append to results of a previous call. */
47 #define GLOB_NOESCAPE (1 << 6)/* Backslashes don't quote metacharacters. */
48 #define GLOB_PERIOD (1 << 7)/* Leading `.' can be matched by metachars. */
49 #define __GLOB_FLAGS (GLOB_ERR|GLOB_MARK|GLOB_NOSORT|GLOB_DOOFFS| \
50 GLOB_NOESCAPE|GLOB_NOCHECK|GLOB_APPEND| \
51 GLOB_PERIOD|GLOB_ALTDIRFUNC|GLOB_BRACE| \
52 GLOB_NOMAGIC|GLOB_TILDE)
54 #if !defined (_POSIX_C_SOURCE) || _POSIX_C_SOURCE < 2 || defined (_BSD_SOURCE)
55 #define GLOB_MAGCHAR (1 << 8)/* Set in gl_flags if any metachars seen. */
56 #define GLOB_ALTDIRFUNC (1 << 9)/* Use gl_opendir et al functions. */
57 #define GLOB_BRACE (1 << 10)/* Expand "{a,b}" to "a" "b". */
58 #define GLOB_NOMAGIC (1 << 11)/* If no magic chars, return the pattern. */
59 #define GLOB_TILDE (1 <<12)/* Expand ~user and ~ to home directories. */
60 #endif
62 /* Error returns from `glob'. */
63 #define GLOB_NOSPACE 1 /* Ran out of memory. */
64 #define GLOB_ABEND 2 /* Read error. */
65 #define GLOB_NOMATCH 3 /* No matches found. */
67 /* Structure describing a globbing run. */
68 #ifndef _AMIGA /* Buggy compiler. */
69 struct stat;
70 #endif
71 typedef struct
73 int gl_pathc; /* Count of paths matched by the pattern. */
74 char **gl_pathv; /* List of matched pathnames. */
75 int gl_offs; /* Slots to reserve in `gl_pathv'. */
76 int gl_flags; /* Set to FLAGS, maybe | GLOB_MAGCHAR. */
78 /* If the GLOB_ALTDIRFUNC flag is set, the following functions
79 are used instead of the normal file access functions. */
80 void (*gl_closedir) __P ((void *));
81 struct dirent *(*gl_readdir) __P ((void *));
82 __ptr_t (*gl_opendir) __P ((const char *));
83 int (*gl_lstat) __P ((const char *, struct stat *));
84 int (*gl_stat) __P ((const char *, struct stat *));
85 } glob_t;
87 /* Do glob searching for PATTERN, placing results in PGLOB.
88 The bits defined above may be set in FLAGS.
89 If a directory cannot be opened or read and ERRFUNC is not nil,
90 it is called with the pathname that caused the error, and the
91 `errno' value from the failing call; if it returns non-zero
92 `glob' returns GLOB_ABEND; if it returns zero, the error is ignored.
93 If memory cannot be allocated for PGLOB, GLOB_NOSPACE is returned.
94 Otherwise, `glob' returns zero. */
95 extern int glob __P ((const char *__pattern, int __flags,
96 int (*__errfunc) __P ((const char *, int)),
97 glob_t *__pglob));
99 /* Free storage allocated in PGLOB by a previous `glob' call. */
100 extern void globfree __P ((glob_t *__pglob));
103 #ifdef __cplusplus
105 #endif
107 #endif /* glob.h */