diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-17 11:55:19 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-17 12:33:39 -0400 |
commit | 68949cf1b9cb5336ea06ad7f87db8e28b620f2ac (patch) | |
tree | b481fbc43d98d5e3606dd8646440ce0ae0f09b9f /src/bftw.h | |
parent | 332f38aff0e6b7bc1a3a648eb66437d2d043ad21 (diff) | |
download | bfs-68949cf1b9cb5336ea06ad7f87db8e28b620f2ac.tar.xz |
bftw: New flag to control whiteout visibility
Diffstat (limited to 'src/bftw.h')
-rw-r--r-- | src/bftw.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -156,6 +156,8 @@ enum bftw_flags { BFTW_SORT = 1 << 8, /** Read each directory into memory before processing its children. */ BFTW_BUFFER = 1 << 9, + /** Include whiteouts in the search results. */ + BFTW_WHITEOUTS = 1 << 10, }; /** |