Age | Commit message (Expand) | Author | Files | Lines |
2021-05-05 | argv.h: tty colors: added argv_usage_plain(). | midipix | 1 | -4/+30 |
2020-01-27 | argv.h: remove stale comment regarding sofort. | midipix | 1 | -1/+0 |
2018-07-14 | argv.h: output usage and errors using [argv_]dprintf rather than fprint. | midipix | 1 | -36/+42 |
2018-07-14 | argv.h: argv_get(): be consistent between forward decl. and impl. | midipix | 1 | -1/+1 |
2018-07-14 | argv.h: move definition of struct argv_meta_impl to the implementation block. | midipix | 1 | -6/+6 |
2018-05-23 | argv.h: whitespace meditation. | midipix | 1 | -5/+9 |
2018-05-23 | argv: argv_scan(): properly handle optional argument values of short options. | midipix | 1 | -0/+2 |
2017-02-04 | annual chores. | midipix | 1 | -1/+1 |
2016-12-26 | argv.h: struct argv_ctx: .unitidx and .erridx are set via pointer arithmetic. | midipix | 1 | -2/+2 |
2016-12-25 | argv.h: use an option vector rather than a direct pointer to the option table. | midipix | 1 | -31/+52 |
2016-11-26 | argv.h: error code path: remove unneeded if statement (always true). | midipix | 1 | -5/+2 |
2016-11-10 | argv.h: argv_usage(): use correct format for short option name in short mode. | midipix | 1 | -1/+1 |
2016-11-10 | argv.h: error message formatting: handle lonely long options. | midipix | 1 | -12/+17 |
2016-11-10 | argv.h: no need to #include <errno.h> | midipix | 1 | -1/+0 |
2016-11-10 | argv.h: argv_show_status(): mark unused parameter. | midipix | 1 | -0/+2 |
2016-11-10 | argv.h: usage screen generator: use the 'file' parameter rather than 'stdout'. | midipix | 1 | -8/+8 |
2016-11-10 | argv.h: usage screen generator: added basic paradigm support. | midipix | 1 | -1/+9 |
2016-11-10 | argv.h: usage screen generator: add colors. | midipix | 1 | -0/+21 |
2016-11-10 | argv.h: simplified usage screen generator: initial implementation. | midipix | 1 | -0/+135 |
2016-11-10 | argv.h: usage screen generator: remove the paradigm-supporting implementation. | midipix | 1 | -331/+0 |
2016-11-10 | argv.h: usage screen generator: fix typesetting of spanning paradigms. | midipix | 1 | -6/+25 |
2016-11-10 | argv.h: test for ARGV_OPTION_HYBRID_ONLY before accepting arg-less options. | midipix | 1 | -3/+3 |
2016-11-10 | argv.h: add the missing ARGV_OPTION_HYBRID_ONLY to ARGV_OPTION_HYBRID_SWITCH. | midipix | 1 | -1/+2 |
2016-11-10 | argv.h: usage screen generator: fix notation of purely hybrid options. | midipix | 1 | -3/+13 |
2016-11-10 | argv.h: usage screen generator: give <argname> priority over <paradigm>. | midipix | 1 | -14/+14 |
2016-11-10 | argv.h: argv_scan(): report argv index of first unit and first error (if any). | midipix | 1 | -3/+12 |
2016-11-10 | argv_scan(): rename a shadowing automatic variable. | midipix | 1 | -26/+26 |
2016-11-10 | argv.h: argv_get(): add missing initializer (ctx.program). | midipix | 1 | -1/+1 |
2016-11-10 | argv.h: reluctantly add ARGV_OPTION_HYBRID_JOINED support. | midipix | 1 | -9/+17 |
2016-11-10 | argv.h: main(): fix signatures. | midipix | 1 | -9/+9 |
2016-11-10 | argv.h: hybrid option switches: support comma-based value assignment. | midipix | 1 | -10/+26 |
2016-11-10 | annual chores. | midipix | 1 | -1/+1 |
2016-11-10 | argv.h: fix ARGV_OPTARG_OPTIONAL code path for long options. | midipix | 1 | -10/+1 |
2016-11-10 | argv.h: add (harmlessly) missing 'else' in ARGV_OPTARG_OPTIONAL code path. | midipix | 1 | -1/+1 |
2016-11-10 | argv.h: fix semantics of calloc() calls. | midipix | 1 | -6/+8 |
2016-11-10 | argv.h: argv_show_error(): prefix illegal short options with a dash. | midipix | 1 | -1/+1 |
2016-11-10 | argv.h: nitpick (code layout). | midipix | 1 | -18/+54 |
2016-11-10 | argv.h: skip unavailable short/long option records with --help={short|long}. | midipix | 1 | -0/+5 |
2016-11-10 | argv.h: add support for hybrid options (i.e. -std, -pipe). | midipix | 1 | -6/+102 |
2016-11-10 | argv.h: rename ARGV_TAB to (the clearer) ARGV_TAB_WIDTH. | midipix | 1 | -10/+10 |
2016-11-10 | argv.h: fix out-of-place initialization of mparalen (and related vars). | midipix | 1 | -5/+5 |
2016-11-10 | argv.h: allow the tab width to be customized. | midipix | 1 | -8/+12 |
2016-11-10 | argv.h: exclude static function signatures when ARGV_DRIVER is not defined. | midipix | 1 | -2/+2 |
2016-11-10 | program driver: adjust source tree to support multiple skins. | midipix | 1 | -0/+4 |
2016-11-10 | conformance fixes: optimized build: variable initialization and default values. | midipix | 1 | -2/+8 |
2016-11-10 | argv_usage(): disable additional space for long items, but keep the logic. | midipix | 1 | -2/+2 |
2016-11-10 | driver integration 5/9: handle internal errors more noisily. | midipix | 1 | -0/+6 |
2016-11-10 | driver integration 4/9: argument vector parser: derive program name as needed. | midipix | 1 | -0/+21 |
2016-11-10 | initial inclusion of argv.h: thread-safe arg parser and usage screen generator. | midipix | 1 | -0/+839 |