2003-08-07 13:44:09 +04:00
|
|
|
/* $NetBSD: glob.h,v 1.17 2003/08/07 09:44:10 agc Exp $ */
|
1994-10-26 03:55:40 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1993-11-06 04:11:43 +03:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Guido van Rossum.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 13:44:09 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
1994-10-26 03:55:40 +03:00
|
|
|
* @(#)glob.h 8.1 (Berkeley) 6/2/93
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GLOB_H_
|
|
|
|
#define _GLOB_H_
|
|
|
|
|
1993-11-06 04:11:43 +03:00
|
|
|
#include <sys/cdefs.h>
|
1998-06-20 02:41:44 +04:00
|
|
|
#include <sys/featuretest.h>
|
1997-10-21 04:55:10 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int gl_pathc; /* Count of total paths so far. */
|
|
|
|
int gl_matchc; /* Count of paths matching pattern. */
|
|
|
|
int gl_offs; /* Reserved at beginning of gl_pathv. */
|
|
|
|
int gl_flags; /* Copy of flags parameter to glob. */
|
|
|
|
char **gl_pathv; /* List of paths matching pattern. */
|
|
|
|
/* Copy of errfunc parameter to glob. */
|
|
|
|
int (*gl_errfunc) __P((const char *, int));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Alternate filesystem access methods for glob; replacement
|
|
|
|
* versions of closedir(3), readdir(3), opendir(3), stat(2)
|
|
|
|
* and lstat(2).
|
|
|
|
*/
|
|
|
|
void (*gl_closedir) __P((void *));
|
|
|
|
struct dirent *(*gl_readdir) __P((void *));
|
|
|
|
void *(*gl_opendir) __P((const char *));
|
1997-10-22 04:51:45 +04:00
|
|
|
#ifdef __LIBC12_SOURCE__
|
1997-10-21 04:55:10 +04:00
|
|
|
int (*gl_lstat) __P((const char *, struct stat12 *));
|
|
|
|
int (*gl_stat) __P((const char *, struct stat12 *));
|
1997-10-22 04:51:45 +04:00
|
|
|
#else
|
1993-11-06 04:11:43 +03:00
|
|
|
int (*gl_lstat) __P((const char *, struct stat *));
|
|
|
|
int (*gl_stat) __P((const char *, struct stat *));
|
1997-10-22 04:51:45 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
} glob_t;
|
|
|
|
|
1993-11-06 04:11:43 +03:00
|
|
|
#define GLOB_APPEND 0x0001 /* Append to output from previous call. */
|
|
|
|
#define GLOB_DOOFFS 0x0002 /* Use gl_offs. */
|
|
|
|
#define GLOB_ERR 0x0004 /* Return on error. */
|
|
|
|
#define GLOB_MARK 0x0008 /* Append / to matching directories. */
|
|
|
|
#define GLOB_NOCHECK 0x0010 /* Return pattern itself if nothing matches. */
|
|
|
|
#define GLOB_NOSORT 0x0020 /* Don't sort. */
|
1998-06-20 02:41:44 +04:00
|
|
|
#define GLOB_NOESCAPE 0x1000 /* Disable backslash escaping. */
|
1993-08-04 01:53:56 +04:00
|
|
|
|
1998-06-22 16:01:43 +04:00
|
|
|
#define GLOB_NOSPACE (-1) /* Malloc call failed. */
|
|
|
|
#define GLOB_ABORTED (-2) /* Unignored error. */
|
|
|
|
#define GLOB_NOMATCH (-3) /* No match, and GLOB_NOCHECK was not set. */
|
|
|
|
#define GLOB_NOSYS (-4) /* Implementation does not support function. */
|
|
|
|
|
Add a new feature-test macro, _NETBSD_SOURCE. If this is defined
by the application, all NetBSD interfaces are made visible, even
if some other feature-test macro (like _POSIX_C_SOURCE) is defined.
<sys/featuretest.h> defined _NETBSD_SOURCE if none of _ANSI_SOURCE,
_POSIX_C_SOURCE and _XOPEN_SOURCE is defined, so as to preserve
existing behaviour.
This has two major advantages:
+ Programs that require non-POSIX facilities but define _POSIX_C_SOURCE
can trivially be overruled by putting -D_NETBSD_SOURCE in their CFLAGS.
+ It makes most of the #ifs simpler, in that they're all now ORs of the
various macros, rather than having checks for (!defined(_ANSI_SOURCE) ||
!defined(_POSIX_C_SOURCE) || !defined(_XOPEN_SOURCE)) all over the place.
I've tried not to change the semantics of the headers in any case where
_NETBSD_SOURCE wasn't defined, but there were some places where the
current semantics were clearly mad, and retaining them was harder than
correcting them. In particular, I've mostly normalised things so that
_ANSI_SOURCE gets you the smallest set of stuff, then _POSIX_C_SOURCE,
_XOPEN_SOURCE and _NETBSD_SOURCE in that order.
Tested by building for vax, encouraged by thorpej, and uncontested in
tech-userlevel for a week.
2003-04-29 03:16:11 +04:00
|
|
|
#if defined(_NETBSD_SOURCE)
|
1993-11-06 04:11:43 +03:00
|
|
|
#define GLOB_ALTDIRFUNC 0x0040 /* Use alternately specified directory funcs. */
|
|
|
|
#define GLOB_BRACE 0x0080 /* Expand braces ala csh. */
|
|
|
|
#define GLOB_MAGCHAR 0x0100 /* Pattern had globbing characters. */
|
|
|
|
#define GLOB_NOMAGIC 0x0200 /* GLOB_NOCHECK without magic chars (csh). */
|
2001-03-17 00:02:42 +03:00
|
|
|
#define GLOB_LIMIT 0x0400 /* Limit memory used by matches to ARG_MAX */
|
1993-11-06 04:11:43 +03:00
|
|
|
#define GLOB_TILDE 0x0800 /* Expand tilde names from the passwd file. */
|
1998-06-22 16:01:43 +04:00
|
|
|
#define GLOB_QUOTE 0 /* source compatibility */
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-06-22 16:01:43 +04:00
|
|
|
#define GLOB_ABEND GLOB_ABORTED /* source compatibility */
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
1997-10-22 04:51:45 +04:00
|
|
|
#ifdef __LIBC12_SOURCE__
|
2001-10-27 19:35:19 +04:00
|
|
|
int glob __P((const char * __restrict, int,
|
2001-10-28 08:12:31 +03:00
|
|
|
int (*)(const char *, int), glob_t * __restrict));
|
1997-10-22 04:51:45 +04:00
|
|
|
void globfree __P((glob_t *));
|
|
|
|
#else
|
2001-10-27 19:35:19 +04:00
|
|
|
int glob __P((const char * __restrict, int,
|
2001-10-28 08:12:31 +03:00
|
|
|
int (*)(const char *, int), glob_t * __restrict))
|
1997-11-05 02:36:19 +03:00
|
|
|
__RENAME(__glob13);
|
|
|
|
void globfree __P((glob_t *)) __RENAME(__globfree13);
|
1997-10-22 04:51:45 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
__END_DECLS
|
|
|
|
|
|
|
|
#endif /* !_GLOB_H_ */
|