diff options
author | Tim Segers <tsegers@pm.me> | 2023-01-03 15:01:42 +0100 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2023-01-07 15:24:51 +0100 |
commit | 003e2b52ebc2bb2172e1b6a9e363e14a4a18a722 (patch) | |
tree | f37c5158b77c1286ce342132ac2e83e63b102043 /src/opendeco-cli.c | |
parent | 996c83b39184442d16586b3ec2fe7aa6a67be31c (diff) | |
download | opendeco-main.tar.gz |
Diffstat (limited to 'src/opendeco-cli.c')
-rw-r--r-- | src/opendeco-cli.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/opendeco-cli.c b/src/opendeco-cli.c index 8fb0ebd..f9f510e 100644 --- a/src/opendeco-cli.c +++ b/src/opendeco-cli.c @@ -3,9 +3,22 @@ #include <argp.h> #include <stdlib.h> #include <string.h> +#include <wchar.h> #include "opendeco-cli.h" +#include "toml/LICENSE.h" +#include "minunit/LICENSE.h" + +#define print_xxd_arr(name, arrname) \ + do { \ + wprintf(L"--------\n\n"); \ + wprintf(L"License for: %s\n\n", name); \ + for (int i = 0; i < arrname##_len; i++) \ + putwchar(arrname[i]); \ + wprintf(L"\n"); \ + } while (0) + static char args_doc[] = ""; static char doc[] = "Implementation of Buhlmann ZH-L16 with Gradient Factors:" "\vExamples:\n\n" @@ -33,9 +46,17 @@ static struct argp_option options[] = { {"showtravel", 'T', 0, 0, "Show travel segments in deco plan", 11}, {0, 0, 0, 0, "Informational options:", 0 }, + {"licenses", -1, 0, 0, "Show third-party licenses", 0 }, {0, 0, 0, 0, 0, 0 } }; +static void print_licenses() +{ + wprintf(L"THIRD-PARTY LICENSES:\n\n"); + print_xxd_arr("cktan/tomlc99", toml_LICENSE); + print_xxd_arr("siu/minunit", minunit_LICENSE); +} + static error_t parse_opt(int key, char *arg, struct argp_state *state) { struct arguments *arguments = state->input; @@ -83,6 +104,9 @@ static error_t parse_opt(int key, char *arg, struct argp_state *state) case 'T': arguments->SHOW_TRAVEL = 1; break; + case -1: + print_licenses(); + exit(ARGP_ERR_UNKNOWN); case ARGP_KEY_END: if (arguments->depth < 0 || arguments->time < 0) { argp_state_help(state, stderr, ARGP_HELP_USAGE); |