diff options
author | jozan <jozan@noemail.net> | 2020-11-04 16:37:29 +0000 |
---|---|---|
committer | jozan <jozan@noemail.net> | 2020-11-04 16:37:29 +0000 |
commit | 33ac9fb19a680951364c2664ac440b96166b95e0 (patch) | |
tree | 5a384a2ae3d4b29ecd88b6003ded4433af5c5e78 /src/c_opts.h | |
parent | In progress (diff) | |
download | unixize-33ac9fb19a680951364c2664ac440b96166b95e0.tar.gz unixize-33ac9fb19a680951364c2664ac440b96166b95e0.tar.bz2 unixize-33ac9fb19a680951364c2664ac440b96166b95e0.tar.xz unixize-33ac9fb19a680951364c2664ac440b96166b95e0.tar.zst unixize-33ac9fb19a680951364c2664ac440b96166b95e0.zip |
In progress
FossilOrigin-Name: 7845373df4c5e041847297f7b10d25d65002f566a6a14a33a5df4e100d39ef6d
Diffstat (limited to '')
-rw-r--r-- | src/c_opts.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/c_opts.h b/src/c_opts.h index 6704f0d..cbe2e54 100644 --- a/src/c_opts.h +++ b/src/c_opts.h @@ -41,8 +41,6 @@ * unixize: src/c_opts.h * 2020-11-02 23:37 * Joe - * - * This is where we handle command line options */ #ifndef __C_OPTS_H__ @@ -50,12 +48,14 @@ #include "c_unixize.h" -#define C_OPTS "Rvp" +#define C_OPTS "hpnRv" struct opts_s { bool_t recursive; bool_t verbose; bool_t pretend; + bool_t hidden; + bool_t hyphen; }; void c_opts(struct opts_s*, int, const char*[]); |