From 68949cf1b9cb5336ea06ad7f87db8e28b620f2ac Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 17 Oct 2023 11:55:19 -0400 Subject: bftw: New flag to control whiteout visibility --- src/bftw.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/bftw.h') 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, }; /** -- cgit v1.2.3