| Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 1 | /* $NetBSD: ftw.h,v 1.1 2005/12/30 23:07:33 agc Exp $ */ | 
|  | 2 |  | 
|  | 3 | /*	From OpenBSD: ftw.h,v 1.1 2003/07/21 21:13:18 millert Exp 	*/ | 
|  | 4 |  | 
|  | 5 | /* | 
|  | 6 | * Copyright (c) 2003 Todd C. Miller <Todd.Miller@courtesan.com> | 
|  | 7 | * | 
|  | 8 | * Permission to use, copy, modify, and distribute this software for any | 
|  | 9 | * purpose with or without fee is hereby granted, provided that the above | 
|  | 10 | * copyright notice and this permission notice appear in all copies. | 
|  | 11 | * | 
|  | 12 | * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | 
|  | 13 | * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | 
|  | 14 | * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | 
|  | 15 | * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
|  | 16 | * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
|  | 17 | * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | 
|  | 18 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
|  | 19 | * | 
|  | 20 | * Sponsored in part by the Defense Advanced Research Projects | 
|  | 21 | * Agency (DARPA) and Air Force Research Laboratory, Air Force | 
|  | 22 | * Materiel Command, USAF, under agreement number F39502-99-1-0512. | 
|  | 23 | */ | 
|  | 24 |  | 
|  | 25 | #ifndef	_FTW_H | 
|  | 26 | #define	_FTW_H | 
|  | 27 |  | 
| Elliott Hughes | 203e13d | 2016-07-22 14:56:18 -0700 | [diff] [blame] | 28 | #include <sys/cdefs.h> | 
| Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 29 | #include <sys/stat.h> | 
| Elliott Hughes | 203e13d | 2016-07-22 14:56:18 -0700 | [diff] [blame] | 30 | #include <sys/types.h> | 
| Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 31 |  | 
|  | 32 | /* | 
|  | 33 | * Valid flags for the 3rd argument to the function that is passed as the | 
|  | 34 | * second argument to ftw(3) and nftw(3).  Say it three times fast! | 
|  | 35 | */ | 
|  | 36 | #define	FTW_F		0	/* File.  */ | 
|  | 37 | #define	FTW_D		1	/* Directory.  */ | 
|  | 38 | #define	FTW_DNR		2	/* Directory without read permission.  */ | 
|  | 39 | #define	FTW_DP		3	/* Directory with subdirectories visited.  */ | 
|  | 40 | #define	FTW_NS		4	/* Unknown type; stat() failed.  */ | 
|  | 41 | #define	FTW_SL		5	/* Symbolic link.  */ | 
|  | 42 | #define	FTW_SLN		6	/* Sym link that names a nonexistent file.  */ | 
|  | 43 |  | 
|  | 44 | /* | 
|  | 45 | * Flags for use as the 4th argument to nftw(3).  These may be ORed together. | 
|  | 46 | */ | 
|  | 47 | #define	FTW_PHYS	0x01	/* Physical walk, don't follow sym links.  */ | 
|  | 48 | #define	FTW_MOUNT	0x02	/* The walk does not cross a mount point.  */ | 
|  | 49 | #define	FTW_DEPTH	0x04	/* Subdirs visited before the dir itself. */ | 
|  | 50 | #define	FTW_CHDIR	0x08	/* Change to a directory before reading it. */ | 
|  | 51 |  | 
|  | 52 | struct FTW { | 
|  | 53 | int base; | 
|  | 54 | int level; | 
|  | 55 | }; | 
|  | 56 |  | 
|  | 57 | __BEGIN_DECLS | 
| Elliott Hughes | ff26a16 | 2017-08-17 22:34:21 +0000 | [diff] [blame] | 58 | int ftw(const char* __dir_path, int (*__callback)(const char*, const struct stat*, int), int __max_fd_count) __INTRODUCED_IN(17); | 
| Elliott Hughes | 25f17e4 | 2018-02-12 15:48:01 -0800 | [diff] [blame] | 59 | int nftw(const char* __dir_path, int (*__callback)(const char*, const struct stat*, int, struct FTW*), int __max_fd_count, int __flags) __INTRODUCED_IN(17); | 
|  | 60 | int ftw64(const char* __dir_path, int (*__callback)(const char*, const struct stat64*, int), int __max_fd_count) __RENAME_STAT64(ftw, 17, 21); | 
|  | 61 | int nftw64(const char* __dir_path, int (*__callback)(const char*, const struct stat64*, int, struct FTW*), int __max_fd_count, int __flags) __RENAME_STAT64(nftw, 17, 21); | 
| Nick Kralevich | 5e58ea0 | 2012-09-12 13:21:25 -0700 | [diff] [blame] | 62 | __END_DECLS | 
|  | 63 |  | 
| Elliott Hughes | ff26a16 | 2017-08-17 22:34:21 +0000 | [diff] [blame] | 64 | #endif |