From 9c911d74fa351985016d89e8b61b2869111bde71 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 1 Apr 2025 07:24:00 -0400 Subject: ctx: Track the token kind of each argument --- src/ctx.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/ctx.h') diff --git a/src/ctx.h b/src/ctx.h index be6e2af..908338f 100644 --- a/src/ctx.h +++ b/src/ctx.h @@ -29,6 +29,8 @@ struct bfs_ctx { size_t argc; /** The unparsed command line arguments. */ char **argv; + /** The argument token kinds. */ + enum bfs_kind *kinds; /** The root paths. */ const char **paths; -- cgit v1.2.3