|
@@ -25,6 +25,7 @@ enum parse_opt_type {
|
|
|
OPTION_STRING,
|
|
|
OPTION_INTEGER,
|
|
|
OPTION_LONG,
|
|
|
+ OPTION_ULONG,
|
|
|
OPTION_CALLBACK,
|
|
|
OPTION_U64,
|
|
|
OPTION_UINTEGER,
|
|
@@ -133,6 +134,7 @@ struct option {
|
|
|
#define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) }
|
|
|
#define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h) }
|
|
|
#define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, long *), .help = (h) }
|
|
|
+#define OPT_ULONG(s, l, v, h) { .type = OPTION_ULONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned long *), .help = (h) }
|
|
|
#define OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value = check_vtype(v, u64 *), .help = (h) }
|
|
|
#define OPT_STRING(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char **), .argh = (a), .help = (h) }
|
|
|
#define OPT_STRING_OPTARG(s, l, v, a, h, d) \
|