os/ossrv/genericopenlibs/openenvcore/include/glob.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// glob.h
sl@0
     2
sl@0
     3
sl@0
     4
/*
sl@0
     5
 * Copyright (c) 1989, 1993
sl@0
     6
 *	The Regents of the University of California.  All rights reserved.
sl@0
     7
 *
sl@0
     8
 * This code is derived from software contributed to Berkeley by
sl@0
     9
 * Guido van Rossum.
sl@0
    10
 *
sl@0
    11
 * Redistribution and use in source and binary forms, with or without
sl@0
    12
 * modification, are permitted provided that the following conditions
sl@0
    13
 * are met:
sl@0
    14
 * 1. Redistributions of source code must retain the above copyright
sl@0
    15
 *    notice, this list of conditions and the following disclaimer.
sl@0
    16
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    17
 *    notice, this list of conditions and the following disclaimer in the
sl@0
    18
 *    documentation and/or other materials provided with the distribution.
sl@0
    19
 * 4. Neither the name of the University nor the names of its contributors
sl@0
    20
 *    may be used to endorse or promote products derived from this software
sl@0
    21
 *    without specific prior written permission.
sl@0
    22
 *
sl@0
    23
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
sl@0
    24
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    25
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0
    26
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
sl@0
    27
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sl@0
    28
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sl@0
    29
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    30
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sl@0
    31
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sl@0
    32
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sl@0
    33
 * SUCH DAMAGE.
sl@0
    34
 *
sl@0
    35
 *	@(#)glob.h	8.1 (Berkeley) 6/2/93
sl@0
    36
 * $FreeBSD: src/include/glob.h,v 1.7 2002/07/17 04:58:09 mikeh Exp $
sl@0
    37
 */
sl@0
    38
/* Portions Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. */
sl@0
    39
sl@0
    40
#ifndef _GLOB_H_
sl@0
    41
#define	_GLOB_H_
sl@0
    42
sl@0
    43
#include <sys/cdefs.h>
sl@0
    44
sl@0
    45
struct stat;
sl@0
    46
typedef struct {
sl@0
    47
	int gl_pathc;		/* Count of total paths so far. */
sl@0
    48
	int gl_matchc;		/* Count of paths matching pattern. */
sl@0
    49
	int gl_offs;		/* Reserved at beginning of gl_pathv. */
sl@0
    50
	int gl_flags;		/* Copy of flags parameter to glob. */
sl@0
    51
	char **gl_pathv;	/* List of paths matching pattern. */
sl@0
    52
				/* Copy of errfunc parameter to glob. */
sl@0
    53
	int (*gl_errfunc)(const char *, int);
sl@0
    54
sl@0
    55
	/*
sl@0
    56
	 * Alternate filesystem access methods for glob; replacement
sl@0
    57
	 * versions of closedir(3), readdir(3), opendir(3), stat(2)
sl@0
    58
	 * and lstat(2).
sl@0
    59
	 */
sl@0
    60
	void (*gl_closedir)(void *);
sl@0
    61
	struct dirent *(*gl_readdir)(void *);
sl@0
    62
	void *(*gl_opendir)(const char *);
sl@0
    63
	int (*gl_lstat)(const char *, struct stat *);
sl@0
    64
	int (*gl_stat)(const char *, struct stat *);
sl@0
    65
} glob_t;
sl@0
    66
sl@0
    67
#if defined(SYMBIAN_OE_LARGE_FILE_SUPPORT) && !defined(SYMBIAN_OE_NO_LFS)
sl@0
    68
#define glob64_t	glob_t
sl@0
    69
#endif /* SYMBIAN_OE_LARGE_FILE_SUPPORT && !SYMBIAN_OE_NO_LFS */
sl@0
    70
sl@0
    71
#if __POSIX_VISIBLE >= 199209
sl@0
    72
/* Believed to have been introduced in 1003.2-1992 */
sl@0
    73
#define	GLOB_APPEND	0x0001	/* Append to output from previous call. */
sl@0
    74
#define	GLOB_DOOFFS	0x0002	/* Use gl_offs. */
sl@0
    75
#define	GLOB_ERR	0x0004	/* Return on error. */
sl@0
    76
#define	GLOB_MARK	0x0008	/* Append / to matching directories. */
sl@0
    77
#define	GLOB_NOCHECK	0x0010	/* Return pattern itself if nothing matches. */
sl@0
    78
#define	GLOB_NOSORT	0x0020	/* Don't sort. */
sl@0
    79
#define	GLOB_NOESCAPE	0x2000	/* Disable backslash escaping. */
sl@0
    80
sl@0
    81
/* Error values returned by glob(3) */
sl@0
    82
#define	GLOB_NOSPACE	(-1)	/* Malloc call failed. */
sl@0
    83
#define	GLOB_ABORTED	(-2)	/* Unignored error. */
sl@0
    84
#define	GLOB_NOMATCH	(-3)	/* No match and GLOB_NOCHECK was not set. */
sl@0
    85
#define	GLOB_NOSYS	(-4)	/* Obsolete: source comptability only. */
sl@0
    86
#endif /* __POSIX_VISIBLE >= 199209 */
sl@0
    87
sl@0
    88
#if __BSD_VISIBLE
sl@0
    89
#define	GLOB_ALTDIRFUNC	0x0040	/* Use alternately specified directory funcs. */
sl@0
    90
#define	GLOB_BRACE	0x0080	/* Expand braces ala csh. */
sl@0
    91
#define	GLOB_MAGCHAR	0x0100	/* Pattern had globbing characters. */
sl@0
    92
#define	GLOB_NOMAGIC	0x0200	/* GLOB_NOCHECK without magic chars (csh). */
sl@0
    93
#define	GLOB_QUOTE	0x0400	/* Quote special chars with \. */
sl@0
    94
#define	GLOB_TILDE	0x0800	/* Expand tilde names from the passwd file. */
sl@0
    95
#define	GLOB_LIMIT	0x1000	/* limit number of returned paths */
sl@0
    96
sl@0
    97
/* source compatibility, these are the old names */
sl@0
    98
#define GLOB_MAXPATH	GLOB_LIMIT
sl@0
    99
#define	GLOB_ABEND	GLOB_ABORTED
sl@0
   100
#endif /* __BSD_VISIBLE */
sl@0
   101
sl@0
   102
__BEGIN_DECLS
sl@0
   103
sl@0
   104
IMPORT_C int	glob(const char *, int, int (*)(const char *, int), glob_t *);
sl@0
   105
IMPORT_C void	globfree(glob_t *);
sl@0
   106
sl@0
   107
#if defined(SYMBIAN_OE_LARGE_FILE_SUPPORT) && !defined(SYMBIAN_OE_NO_LFS)
sl@0
   108
#define glob64	glob
sl@0
   109
#define globfree64	globfree
sl@0
   110
#endif /* SYMBIAN_OE_LARGE_FILE_SUPPORT && !SYMBIAN_OE_NO_LFS */
sl@0
   111
sl@0
   112
__END_DECLS
sl@0
   113
sl@0
   114
#endif /* !_GLOB_H_ */