diff options
Diffstat (limited to 'ctx.h')
-rw-r--r-- | ctx.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -57,8 +57,11 @@ const char *debug_flag_name(enum debug_flags flag); * The execution context for bfs. */ struct bfs_ctx { + /** The number of command line arguments. */ + size_t argc; /** The unparsed command line arguments. */ char **argv; + /** The root paths. */ const char **paths; /** The main command line expression. */ |