diff options
author | jozan <jozan@noemail.net> | 2020-11-06 04:11:06 +0000 |
---|---|---|
committer | jozan <jozan@noemail.net> | 2020-11-06 04:11:06 +0000 |
commit | 7676870f31ae5ceab29815d5c65f497f4ecf9c83 (patch) | |
tree | 0d3659204203453576960b4f0d8a81352eadafb2 /src/c_opts.h | |
parent | Must reparse options (diff) | |
download | unixize-7676870f31ae5ceab29815d5c65f497f4ecf9c83.tar.gz unixize-7676870f31ae5ceab29815d5c65f497f4ecf9c83.tar.bz2 unixize-7676870f31ae5ceab29815d5c65f497f4ecf9c83.tar.xz unixize-7676870f31ae5ceab29815d5c65f497f4ecf9c83.tar.zst unixize-7676870f31ae5ceab29815d5c65f497f4ecf9c83.zip |
A lot of work done, now subst
FossilOrigin-Name: 3850b6d394b367ed98a7493dfb137f43f27372b7ba3ed4eeef4459597bb2d69f
Diffstat (limited to 'src/c_opts.h')
-rw-r--r-- | src/c_opts.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/c_opts.h b/src/c_opts.h index b2c76ce..b7d734f 100644 --- a/src/c_opts.h +++ b/src/c_opts.h @@ -48,9 +48,10 @@ #include "c_unixize.h" -#define C_OPTS "ahinpRv" -#define C_USAGE_FMT "usage: unixize [-%s] [directory]\n" +#define C_OPTS "ahinpRv" +#define C_RECURSIVE_CHAR 'r' +#define C_USAGE_FMT "usage: unixize [-%s] [directory]\n" -void c_get_opts(struct opts_s*, int, const char*[]); +bool_t c_get_opts(struct opts_s*, int, const char*[]); #endif /* ifndef __C_OPTS_H__ */ |