]> git.wh0rd.org - dump.git/blob - compat/include/glob.h
Version 0.4b5.
[dump.git] / compat / include / glob.h
1 /*
2 * Ported to Linux's Second Extended File System as part of the
3 * dump and restore backup suit
4 * Remy Card <card@Linux.EU.Org>, 1994-1997
5 * Stelian Pop <pop@cybercable.fr>, 1999
6 *
7 */
8
9 /*
10 * Copyright (c) 1989, 1993
11 * The Regents of the University of California. All rights reserved.
12 *
13 * This code is derived from software contributed to Berkeley by
14 * Guido van Rossum.
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution.
24 * 3. All advertising materials mentioning features or use of this software
25 * must display the following acknowledgement:
26 * This product includes software developed by the University of
27 * California, Berkeley and its contributors.
28 * 4. Neither the name of the University nor the names of its contributors
29 * may be used to endorse or promote products derived from this software
30 * without specific prior written permission.
31 *
32 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 * SUCH DAMAGE.
43 *
44 * @(#)glob.h 8.1 (Berkeley) 6/2/93
45 */
46
47 #ifndef _GLOB_H_
48 #define _GLOB_H_
49
50 #include <sys/cdefs.h>
51
52 struct stat;
53 typedef struct {
54 int gl_pathc; /* Count of total paths so far. */
55 int gl_matchc; /* Count of paths matching pattern. */
56 int gl_offs; /* Reserved at beginning of gl_pathv. */
57 int gl_flags; /* Copy of flags parameter to glob. */
58 char **gl_pathv; /* List of paths matching pattern. */
59 /* Copy of errfunc parameter to glob. */
60 int (*gl_errfunc) __P((const char *, int));
61
62 /*
63 * Alternate filesystem access methods for glob; replacement
64 * versions of closedir(3), readdir(3), opendir(3), stat(2)
65 * and lstat(2).
66 */
67 void (*gl_closedir) __P((void *));
68 struct dirent *(*gl_readdir) __P((void *));
69 void *(*gl_opendir) __P((const char *));
70 int (*gl_lstat) __P((const char *, struct stat *));
71 int (*gl_stat) __P((const char *, struct stat *));
72 } glob_t;
73
74 #define GLOB_APPEND 0x0001 /* Append to output from previous call. */
75 #define GLOB_DOOFFS 0x0002 /* Use gl_offs. */
76 #define GLOB_ERR 0x0004 /* Return on error. */
77 #define GLOB_MARK 0x0008 /* Append / to matching directories. */
78 #define GLOB_NOCHECK 0x0010 /* Return pattern itself if nothing matches. */
79 #define GLOB_NOSORT 0x0020 /* Don't sort. */
80
81 #define GLOB_ALTDIRFUNC 0x0040 /* Use alternately specified directory funcs. */
82 #define GLOB_BRACE 0x0080 /* Expand braces ala csh. */
83 #define GLOB_MAGCHAR 0x0100 /* Pattern had globbing characters. */
84 #define GLOB_NOMAGIC 0x0200 /* GLOB_NOCHECK without magic chars (csh). */
85 #define GLOB_QUOTE 0x0400 /* Quote special chars with \. */
86 #define GLOB_TILDE 0x0800 /* Expand tilde names from the passwd file. */
87
88 #define GLOB_NOSPACE (-1) /* Malloc call failed. */
89 #define GLOB_ABEND (-2) /* Unignored error. */
90
91 __BEGIN_DECLS
92 int glob __P((const char *, int, int (*)(const char *, int), glob_t *));
93 void globfree __P((glob_t *));
94 __END_DECLS
95
96 #endif /* !_GLOB_H_ */