sl@0: // glob.h
sl@0: 
sl@0: 
sl@0: /*
sl@0:  * Copyright (c) 1989, 1993
sl@0:  *	The Regents of the University of California.  All rights reserved.
sl@0:  *
sl@0:  * This code is derived from software contributed to Berkeley by
sl@0:  * Guido van Rossum.
sl@0:  *
sl@0:  * Redistribution and use in source and binary forms, with or without
sl@0:  * modification, are permitted provided that the following conditions
sl@0:  * are met:
sl@0:  * 1. Redistributions of source code must retain the above copyright
sl@0:  *    notice, this list of conditions and the following disclaimer.
sl@0:  * 2. Redistributions in binary form must reproduce the above copyright
sl@0:  *    notice, this list of conditions and the following disclaimer in the
sl@0:  *    documentation and/or other materials provided with the distribution.
sl@0:  * 4. Neither the name of the University nor the names of its contributors
sl@0:  *    may be used to endorse or promote products derived from this software
sl@0:  *    without specific prior written permission.
sl@0:  *
sl@0:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
sl@0:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
sl@0:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sl@0:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sl@0:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sl@0:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sl@0:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sl@0:  * SUCH DAMAGE.
sl@0:  *
sl@0:  *	@(#)glob.h	8.1 (Berkeley) 6/2/93
sl@0:  * $FreeBSD: src/include/glob.h,v 1.7 2002/07/17 04:58:09 mikeh Exp $
sl@0:  */
sl@0: /* Portions Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. */
sl@0: 
sl@0: #ifndef _GLOB_H_
sl@0: #define	_GLOB_H_
sl@0: 
sl@0: #include <sys/cdefs.h>
sl@0: 
sl@0: struct stat;
sl@0: typedef struct {
sl@0: 	int gl_pathc;		/* Count of total paths so far. */
sl@0: 	int gl_matchc;		/* Count of paths matching pattern. */
sl@0: 	int gl_offs;		/* Reserved at beginning of gl_pathv. */
sl@0: 	int gl_flags;		/* Copy of flags parameter to glob. */
sl@0: 	char **gl_pathv;	/* List of paths matching pattern. */
sl@0: 				/* Copy of errfunc parameter to glob. */
sl@0: 	int (*gl_errfunc)(const char *, int);
sl@0: 
sl@0: 	/*
sl@0: 	 * Alternate filesystem access methods for glob; replacement
sl@0: 	 * versions of closedir(3), readdir(3), opendir(3), stat(2)
sl@0: 	 * and lstat(2).
sl@0: 	 */
sl@0: 	void (*gl_closedir)(void *);
sl@0: 	struct dirent *(*gl_readdir)(void *);
sl@0: 	void *(*gl_opendir)(const char *);
sl@0: 	int (*gl_lstat)(const char *, struct stat *);
sl@0: 	int (*gl_stat)(const char *, struct stat *);
sl@0: } glob_t;
sl@0: 
sl@0: #if defined(SYMBIAN_OE_LARGE_FILE_SUPPORT) && !defined(SYMBIAN_OE_NO_LFS)
sl@0: #define glob64_t	glob_t
sl@0: #endif /* SYMBIAN_OE_LARGE_FILE_SUPPORT && !SYMBIAN_OE_NO_LFS */
sl@0: 
sl@0: #if __POSIX_VISIBLE >= 199209
sl@0: /* Believed to have been introduced in 1003.2-1992 */
sl@0: #define	GLOB_APPEND	0x0001	/* Append to output from previous call. */
sl@0: #define	GLOB_DOOFFS	0x0002	/* Use gl_offs. */
sl@0: #define	GLOB_ERR	0x0004	/* Return on error. */
sl@0: #define	GLOB_MARK	0x0008	/* Append / to matching directories. */
sl@0: #define	GLOB_NOCHECK	0x0010	/* Return pattern itself if nothing matches. */
sl@0: #define	GLOB_NOSORT	0x0020	/* Don't sort. */
sl@0: #define	GLOB_NOESCAPE	0x2000	/* Disable backslash escaping. */
sl@0: 
sl@0: /* Error values returned by glob(3) */
sl@0: #define	GLOB_NOSPACE	(-1)	/* Malloc call failed. */
sl@0: #define	GLOB_ABORTED	(-2)	/* Unignored error. */
sl@0: #define	GLOB_NOMATCH	(-3)	/* No match and GLOB_NOCHECK was not set. */
sl@0: #define	GLOB_NOSYS	(-4)	/* Obsolete: source comptability only. */
sl@0: #endif /* __POSIX_VISIBLE >= 199209 */
sl@0: 
sl@0: #if __BSD_VISIBLE
sl@0: #define	GLOB_ALTDIRFUNC	0x0040	/* Use alternately specified directory funcs. */
sl@0: #define	GLOB_BRACE	0x0080	/* Expand braces ala csh. */
sl@0: #define	GLOB_MAGCHAR	0x0100	/* Pattern had globbing characters. */
sl@0: #define	GLOB_NOMAGIC	0x0200	/* GLOB_NOCHECK without magic chars (csh). */
sl@0: #define	GLOB_QUOTE	0x0400	/* Quote special chars with \. */
sl@0: #define	GLOB_TILDE	0x0800	/* Expand tilde names from the passwd file. */
sl@0: #define	GLOB_LIMIT	0x1000	/* limit number of returned paths */
sl@0: 
sl@0: /* source compatibility, these are the old names */
sl@0: #define GLOB_MAXPATH	GLOB_LIMIT
sl@0: #define	GLOB_ABEND	GLOB_ABORTED
sl@0: #endif /* __BSD_VISIBLE */
sl@0: 
sl@0: __BEGIN_DECLS
sl@0: 
sl@0: IMPORT_C int	glob(const char *, int, int (*)(const char *, int), glob_t *);
sl@0: IMPORT_C void	globfree(glob_t *);
sl@0: 
sl@0: #if defined(SYMBIAN_OE_LARGE_FILE_SUPPORT) && !defined(SYMBIAN_OE_NO_LFS)
sl@0: #define glob64	glob
sl@0: #define globfree64	globfree
sl@0: #endif /* SYMBIAN_OE_LARGE_FILE_SUPPORT && !SYMBIAN_OE_NO_LFS */
sl@0: 
sl@0: __END_DECLS
sl@0: 
sl@0: #endif /* !_GLOB_H_ */