From: Kevin Day Date: Sat, 10 Mar 2012 17:08:52 +0000 (-0600) Subject: Update: add pipe console parameter X-Git-Tag: 0.3.0~104 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=37356e8c92e5daa49c29a1947d87def8fa2de3c9;p=fll Update: add pipe console parameter The fll standard console arguments now inclide +p, ++pipe. This pipe command requires a single numeric argument that represents the size of the pipe. When this is specified, it tells the application to read from pipe in byte chunks of the specified size. The default pipe size is left up to the application when this is not specified. --- diff --git a/level_0/f_console/c/console.h b/level_0/f_console/c/console.h index 96f33e6..adf960d 100644 --- a/level_0/f_console/c/console.h +++ b/level_0/f_console/c/console.h @@ -56,11 +56,13 @@ extern "C"{ #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_pipe "p" // usage: +p #define f_console_standard_short_version "v" #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_pipe "pipe" #define f_console_standard_long_version "version" #endif // _di_f_standard_console_parameters_