From 37356e8c92e5daa49c29a1947d87def8fa2de3c9 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 10 Mar 2012 11:08:52 -0600 Subject: [PATCH] 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. --- level_0/f_console/c/console.h | 2 ++ 1 file changed, 2 insertions(+) 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_ -- 1.8.3.1