aboutsummaryrefslogtreecommitdiffstats
path: root/src/c_opts.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/c_opts.h')
-rw-r--r--src/c_opts.h6
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*[]);