]> Kevux Git Server - fll/commitdiff
Update: add pipe console parameter
authorKevin Day <kevin@kevux.org>
Sat, 10 Mar 2012 17:08:52 +0000 (11:08 -0600)
committerKevin Day <kevin@kevux.org>
Sat, 10 Mar 2012 17:11:49 +0000 (11:11 -0600)
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

index 96f33e6f567e438c9546bb6472b278c2b31d1804..adf960dde6e71959b0a6f367f51a9579e96a7263 100644 (file)
@@ -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 <size>
   #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_