aboutsummaryrefslogtreecommitdiff
path: root/src/_usage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/_usage.h')
-rw-r--r--src/_usage.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/_usage.h b/src/_usage.h
index 6f48cf8a..83b4f999 100644
--- a/src/_usage.h
+++ b/src/_usage.h
@@ -8,10 +8,16 @@
*/
#define getoptstring_COMMON "Chq"
+
#define longopts_COMMON \
{ "help", 0, NULL, 'h'}, \
{ "nocolor", 0, NULL, 'C'}, \
- { "quiet", 0, NULL, 'q'},
+ { "quiet", 0, NULL, 'q'},
+
+#define longopts_help_COMMON \
+ "Display this help output (duh)", \
+ "Disable color output", \
+ "Run quietly"
#define case_RC_COMMON_GETOPT \
case 'C': setenv ("RC_NOCOLOR", "yes", 1); break; \