From: Kevin Day Date: Wed, 14 Jan 2015 10:11:21 +0000 (-0600) Subject: Update: add debug as a standard console parameter X-Git-Tag: 0.4.2~5 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=6c7f8b0e30b03510289cc5ce3478b518ef3b266b;p=fll Update: add debug as a standard console parameter --- 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)