]> git.ipfire.org Git - thirdparty/git.git/blame - test-parse-options.c
parse-opt: bring PARSE_OPT_HIDDEN and NONEG to git-rev-parse --parseopt
[thirdparty/git.git] / test-parse-options.c
CommitLineData
beb47437
JS
1#include "cache.h"
2#include "parse-options.h"
3
4static int boolean = 0;
5static int integer = 0;
6static char *string = NULL;
7
8int main(int argc, const char **argv)
9{
10 const char *usage[] = {
11 "test-parse-options <options>",
12 NULL
13 };
14 struct option options[] = {
15 OPT_BOOLEAN('b', "boolean", &boolean, "get a boolean"),
16 OPT_INTEGER('i', "integer", &integer, "get a integer"),
17 OPT_INTEGER('j', NULL, &integer, "get a integer, too"),
18 OPT_GROUP("string options"),
19 OPT_STRING('s', "string", &string, "string", "get a string"),
20 OPT_STRING(0, "string2", &string, "str", "get another string"),
243e0614 21 OPT_STRING(0, "st", &string, "st", "get another string (pervert ordering)"),
3a9f0f41 22 OPT_STRING('o', NULL, &string, "str", "get another string"),
beb47437
JS
23 OPT_END(),
24 };
25 int i;
26
27 argc = parse_options(argc, argv, options, usage, 0);
28
29 printf("boolean: %d\n", boolean);
30 printf("integer: %d\n", integer);
31 printf("string: %s\n", string ? string : "(not set)");
32
33 for (i = 0; i < argc; i++)
34 printf("arg %02d: %s\n", i, argv[i]);
35
36 return 0;
37}