os/ossrv/genericopenlibs/openenvcore/include/ftw.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*	$OpenBSD: ftw.h,v 1.1 2003/07/21 21:13:18 millert Exp $	*/
sl@0
     2
sl@0
     3
/*
sl@0
     4
 * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com>
sl@0
     5
sl@0
     6
 *
sl@0
     7
 * Permission to use, copy, modify, and distribute this software for any
sl@0
     8
 * purpose with or without fee is hereby granted, provided that the above
sl@0
     9
 * copyright notice and this permission notice appear in all copies.
sl@0
    10
 *
sl@0
    11
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
sl@0
    12
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
sl@0
    13
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
sl@0
    14
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
sl@0
    15
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
sl@0
    16
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
sl@0
    17
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
sl@0
    18
 *
sl@0
    19
 * Sponsored in part by the Defense Advanced Research Projects
sl@0
    20
 * Agency (DARPA) and Air Force Research Laboratory, Air Force
sl@0
    21
 * Materiel Command, USAF, under agreement number F39502-99-1-0512.
sl@0
    22
 *
sl@0
    23
 * $FreeBSD: src/include/ftw.h,v 1.2 2004/08/24 13:00:54 tjr Exp $
sl@0
    24
 */
sl@0
    25
sl@0
    26
/* Portions Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies).  All rights reserved.*/
sl@0
    27
 
sl@0
    28
#ifndef	_FTW_H
sl@0
    29
#define	_FTW_H
sl@0
    30
sl@0
    31
#ifdef __cplusplus
sl@0
    32
extern "C"	{
sl@0
    33
#endif
sl@0
    34
#include <sys/types.h>
sl@0
    35
#include <sys/stat.h>
sl@0
    36
sl@0
    37
/*
sl@0
    38
 * Valid flags for the 3rd argument to the function that is passed as the
sl@0
    39
 * second argument to ftw(3) and nftw(3).  Say it three times fast!
sl@0
    40
 */
sl@0
    41
#define	FTW_F		0	/* File.  */
sl@0
    42
#define	FTW_D		1	/* Directory.  */
sl@0
    43
#define	FTW_DNR		2	/* Directory without read permission.  */
sl@0
    44
#define	FTW_DP		3	/* Directory with subdirectories visited.  */
sl@0
    45
#define	FTW_NS		4	/* Unknown type; stat() failed.  */
sl@0
    46
#define	FTW_SL		5	/* Symbolic link.  */
sl@0
    47
#define	FTW_SLN		6	/* Sym link that names a nonexistent file.  */
sl@0
    48
sl@0
    49
/*
sl@0
    50
 * Flags for use as the 4th argument to nftw(3).  These may be ORed together.
sl@0
    51
 */
sl@0
    52
#define	FTW_PHYS	0x01	/* Physical walk, don't follow sym links.  */
sl@0
    53
#define	FTW_MOUNT	0x02	/* The walk does not cross a mount point.  */
sl@0
    54
#define	FTW_DEPTH	0x04	/* Subdirs visited before the dir itself. */
sl@0
    55
#define	FTW_CHDIR	0x08	/* Change to a directory before reading it. */
sl@0
    56
sl@0
    57
struct FTW {
sl@0
    58
	int base;
sl@0
    59
	int level;
sl@0
    60
};
sl@0
    61
sl@0
    62
__BEGIN_DECLS
sl@0
    63
sl@0
    64
IMPORT_C int	ftw(const char *, int (*)(const char *, const struct stat *, int), int);
sl@0
    65
sl@0
    66
#if defined(SYMBIAN_OE_LARGE_FILE_SUPPORT) && !defined(SYMBIAN_OE_NO_LFS)
sl@0
    67
#define ftw64	ftw
sl@0
    68
#endif /* SYMBIAN_OE_LARGE_FILE_SUPPORT && !SYMBIAN_OE_NO_LFS */
sl@0
    69
sl@0
    70
sl@0
    71
#ifndef __SYMBIAN32__
sl@0
    72
IMPORT_C int	nftw(const char *, int (*)(const char *, const struct stat *, int,
sl@0
    73
	    struct FTW *), int, int);
sl@0
    74
#endif	    
sl@0
    75
__END_DECLS
sl@0
    76
sl@0
    77
#ifdef __cplusplus
sl@0
    78
}
sl@0
    79
#endif
sl@0
    80
#endif	/* !_FTW_H */