1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "apimagic_driver_impl.h"
#include "argv/argv.h"
#define AMGC_LANG_STD_PARADIGM "c++|c++98|c11|c1x|c89|c90|c99|c9x|" \
"gnu++98|gnu11|gnu1x|" \
"gnu89|gnu99|gnu9x|" \
"iso9899:1990|" \
"iso9899:199409|" \
"iso9899:1999|" \
"iso9899:199x|" \
"iso9899:2011"
const struct argv_option amgc_default_options[] = {
{"version", 'v',TAG_VERSION,ARGV_OPTARG_NONE,0,0,
"show version information"},
{"help", 'h',TAG_HELP,ARGV_OPTARG_OPTIONAL,"short|long",0,
"show usage information [listing %s options only]"},
{"std", 'g',TAG_LANG_STD,ARGV_OPTARG_REQUIRED,AMGC_LANG_STD_PARADIGM,0,
"set language standard"},
{0}
};
|