From 6c7f8b0e30b03510289cc5ce3478b518ef3b266b Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Wed, 14 Jan 2015 04:11:21 -0600 Subject: [PATCH] Update: add debug as a standard console parameter --- level_0/f_console/c/console.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/level_0/f_console/c/console.h b/level_0/f_console/c/console.h index 4556207..75f693b 100644 --- a/level_0/f_console/c/console.h +++ b/level_0/f_console/c/console.h @@ -54,14 +54,16 @@ extern "C"{ // create some standard command line parameter options required by the kevux/fss/fll specifications #ifndef _di_f_standard_console_parameters_ #define f_console_standard_short_help "h" - #define f_console_standard_short_light "l" // usage: +l - #define f_console_standard_short_no_color "n" // usage: +n + #define f_console_standard_short_light "l" + #define f_console_standard_short_no_color "n" #define f_console_standard_short_version "v" + #define f_console_standard_short_debug "d" #define f_console_standard_long_help "help" #define f_console_standard_long_light "light" #define f_console_standard_long_no_color "no_color" #define f_console_standard_long_version "version" + #define f_console_standard_long_debug "debug" #endif // _di_f_standard_console_parameters_ // the maximum size for a single parameter (this should be hellishly more than enough) -- 1.8.3.1