From acf934993a8112023f111ae1dfedc90f40e1d496 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 15 Apr 2022 14:34:35 -0400 Subject: bftw: New BFTW_BUFFER flag --- bftw.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bftw.h') diff --git a/bftw.h b/bftw.h index 619d2a3..c458e1b 100644 --- a/bftw.h +++ b/bftw.h @@ -167,6 +167,8 @@ enum bftw_flags { BFTW_PRUNE_MOUNTS = 1 << 7, /** Sort directory entries before processing them. */ BFTW_SORT = 1 << 8, + /** Read each directory into memory before processing its children. */ + BFTW_BUFFER = 1 << 9, }; /** -- cgit v1.2.3