From b9ed3f51d636bb0f182b0cc8a86ebf928b37f8c5 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Thu, 23 Nov 2023 13:41:35 -0500 Subject: bftw: Add some whitespace to struct bftw_args --- src/bftw.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bftw.h b/src/bftw.h index 2b36b8b..e325d14 100644 --- a/src/bftw.h +++ b/src/bftw.h @@ -182,18 +182,22 @@ struct bftw_args { const char **paths; /** The number of starting paths. */ size_t npaths; + /** The callback to invoke. */ bftw_callback *callback; /** A pointer which is passed to the callback. */ void *ptr; + /** The maximum number of file descriptors to keep open. */ int nopenfd; /** The maximum number of threads to use. */ int nthreads; + /** Flags that control bftw() behaviour. */ enum bftw_flags flags; /** The search strategy to use. */ enum bftw_strategy strategy; + /** The parsed mount table, if available. */ const struct bfs_mtab *mtab; }; -- cgit v1.2.3