summaryrefslogtreecommitdiffstats
path: root/src/bftw.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-10-17 11:55:19 -0400
committerTavian Barnes <tavianator@tavianator.com>2023-10-17 12:33:39 -0400
commit68949cf1b9cb5336ea06ad7f87db8e28b620f2ac (patch)
treeb481fbc43d98d5e3606dd8646440ce0ae0f09b9f /src/bftw.h
parent332f38aff0e6b7bc1a3a648eb66437d2d043ad21 (diff)
downloadbfs-68949cf1b9cb5336ea06ad7f87db8e28b620f2ac.tar.xz
bftw: New flag to control whiteout visibility
Diffstat (limited to 'src/bftw.h')
-rw-r--r--src/bftw.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bftw.h b/src/bftw.h
index 940532c..2b36b8b 100644
--- a/src/bftw.h
+++ b/src/bftw.h
@@ -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,
};
/**