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