diff options
Diffstat (limited to 'bftw.h')
-rw-r--r-- | bftw.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -98,5 +98,7 @@ int bftw(const char *path, bftw_fn *fn, int nopenfd, int flags, void *ptr); #define BFTW_STAT (1 << 0) /** flag: Attempt to recover from encountered errors. */ #define BFTW_RECOVER (1 << 1) +/** flag: Visit all of a directory's descendants before the directory itself. */ +#define BFTW_DEPTH (1 << 2) #endif // BFS_BFTW_H |