]> git.wh0rd.org - dump.git/blob - compat/include/compatglob.h
Added CVS Id.
[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 */
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 * $Id: compatglob.h,v 1.2 1999/10/11 13:31:09 stelian Exp $
45 */
46
47 #ifndef _GLOB_H_
48 #define _GLOB_H_
49
50 #include <config.h>
51
52 #ifdef HAVE_GLOB
53 #include <glob.h>
54 #else
55
56 #include <sys/cdefs.h>
57
58 struct stat;
59 typedef struct {
60 int gl_pathc; /* Count of total paths so far. */
61 int gl_matchc; /* Count of paths matching pattern. */
62 int gl_offs; /* Reserved at beginning of gl_pathv. */
63 int gl_flags; /* Copy of flags parameter to glob. */
64 char **gl_pathv; /* List of paths matching pattern. */
65 /* Copy of errfunc parameter to glob. */
66 int (*gl_errfunc) __P((const char *, int));
67
68 /*
69 * Alternate filesystem access methods for glob; replacement
70 * versions of closedir(3), readdir(3), opendir(3), stat(2)
71 * and lstat(2).
72 */
73 void (*gl_closedir) __P((void *));
74 struct dirent *(*gl_readdir) __P((void *));
75 void *(*gl_opendir) __P((const char *));
76 int (*gl_lstat) __P((const char *, struct stat *));
77 int (*gl_stat) __P((const char *, struct stat *));
78 } glob_t;
79
80 #define GLOB_APPEND 0x0001 /* Append to output from previous call. */
81 #define GLOB_DOOFFS 0x0002 /* Use gl_offs. */
82 #define GLOB_ERR 0x0004 /* Return on error. */
83 #define GLOB_MARK 0x0008 /* Append / to matching directories. */
84 #define GLOB_NOCHECK 0x0010 /* Return pattern itself if nothing matches. */
85 #define GLOB_NOSORT 0x0020 /* Don't sort. */
86
87 #define GLOB_ALTDIRFUNC 0x0040 /* Use alternately specified directory funcs. */
88 #define GLOB_BRACE 0x0080 /* Expand braces ala csh. */
89 #define GLOB_MAGCHAR 0x0100 /* Pattern had globbing characters. */
90 #define GLOB_NOMAGIC 0x0200 /* GLOB_NOCHECK without magic chars (csh). */
91 #define GLOB_QUOTE 0x0400 /* Quote special chars with \. */
92 #define GLOB_TILDE 0x0800 /* Expand tilde names from the passwd file. */
93
94 #define GLOB_NOSPACE (-1) /* Malloc call failed. */
95 #define GLOB_ABEND (-2) /* Unignored error. */
96
97 __BEGIN_DECLS
98 int glob __P((const char *, int, int (*)(const char *, int), glob_t *));
99 void globfree __P((glob_t *));
100 __END_DECLS
101
102 #endif /* !_GLOB_H_ */
103
104 #endif /* HAVE_GLOB */