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