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