-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample.c
82 lines (72 loc) · 2 KB
/
example.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include "choice.h"
#include <stddef.h>
#include <stdbool.h>
#include <stdio.h>
#define UNUSED(x) (void)(x)
static struct {
bool help;
bool verbose;
const char* required;
long optional;
bool write;
long bsize;
} config = {
false,
false,
NULL,
0,
true,
1024
};
int option_subcommand() {
return 0;
}
static option_t subopts[] = {
{ "rw", "read-write mode", '\0', OPTION_NODASH, &option_true, &config.write },
{ "ro", "read-only mode", '\0', OPTION_NODASH, &option_false, &config.write },
{ "bs", "block size", '\0', OPTION_REQARG|OPTION_NODASH, &option_long, &config.bsize },
OPTION_EOL
};
static option_t insopts[] = {
{ "optional", "optional arg", 'o', OPTION_OPTARG, &option_long, &config.optional },
{ "subopt", "extra options", 's', OPTION_REQARG, &option_subopt, &(subopts[0]) },
OPTION_EOL
};
static option_t options[] = {
{ "verbose", "enable verbose stuff", 'v', 0, &option_true, &config.verbose },
{ "required", "required arg", 'r', OPTION_REQARG, &option_str, &config.required },
{ "help", "display help", 'h', 0, &option_true, &config.help },
{ "install", "the install subcommand", '\0', OPTION_NODASH, &option_subcommand, &(insopts[0]) },
OPTION_EOL
};
static void help() {
option_t* option;
printf( "usage: example [options]\n" );
option = &(options[0]);
printf( "\noptions:\n" );
while( option->name != NULL || option->abbr != '\0' ) {
option_help( option, NULL );
option++;
}
option = &(subopts[0]);
printf( "\nsubopts:\n" );
while( option->name != NULL || option->abbr != '\0' ) {
option_help( option, NULL );
option++;
}
}
int main( int argc, char* argv[] ) {
option_parse( &(options[0]), argc, argv );
if( config.help ) {
help();
return 0;
} else {
printf( "verbose: %s, required: %s, optional: %li, write: %s, bsize: %li\n",
config.verbose ? "true" : "false",
config.required,
config.optional,
config.write ? "true" : "false",
config.bsize );
}
return 0;
}