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