Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Josh Poimboeuf | 1843b4e | 2015-12-15 09:39:40 -0600 | [diff] [blame] | 2 | #ifndef __SUBCMD_PARSE_OPTIONS_H |
| 3 | #define __SUBCMD_PARSE_OPTIONS_H |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 4 | |
Arnaldo Carvalho de Melo | d5f805c | 2017-01-05 12:44:05 -0300 | [diff] [blame] | 5 | #include <linux/kernel.h> |
Arnaldo Carvalho de Melo | 8035458 | 2010-05-17 15:51:10 -0300 | [diff] [blame] | 6 | #include <stdbool.h> |
Josh Poimboeuf | 2f4ce5e | 2015-12-15 09:39:38 -0600 | [diff] [blame] | 7 | #include <stdint.h> |
Arnaldo Carvalho de Melo | 1967936 | 2010-05-17 15:39:16 -0300 | [diff] [blame] | 8 | |
Josh Poimboeuf | 24b1e5d | 2015-12-18 06:39:17 -0600 | [diff] [blame] | 9 | #ifndef NORETURN |
| 10 | #define NORETURN __attribute__((__noreturn__)) |
| 11 | #endif |
| 12 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 13 | enum parse_opt_type { |
| 14 | /* special types */ |
| 15 | OPTION_END, |
| 16 | OPTION_ARGUMENT, |
| 17 | OPTION_GROUP, |
| 18 | /* options with no arguments */ |
| 19 | OPTION_BIT, |
Ian Munsie | c055564 | 2010-04-13 18:37:33 +1000 | [diff] [blame] | 20 | OPTION_BOOLEAN, |
| 21 | OPTION_INCR, |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 22 | OPTION_SET_UINT, |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 23 | OPTION_SET_PTR, |
| 24 | /* options with arguments (usually) */ |
| 25 | OPTION_STRING, |
| 26 | OPTION_INTEGER, |
Peter Zijlstra | e61078a | 2009-06-03 11:24:33 +0200 | [diff] [blame] | 27 | OPTION_LONG, |
Arnaldo Carvalho de Melo | 4ba8b3e | 2018-10-18 15:24:07 -0300 | [diff] [blame] | 28 | OPTION_ULONG, |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 29 | OPTION_CALLBACK, |
Arnaldo Carvalho de Melo | 6ba85ce | 2010-05-17 12:16:48 -0300 | [diff] [blame] | 30 | OPTION_U64, |
Arnaldo Carvalho de Melo | c100edb | 2010-05-17 15:30:00 -0300 | [diff] [blame] | 31 | OPTION_UINTEGER, |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 32 | }; |
| 33 | |
| 34 | enum parse_opt_flags { |
| 35 | PARSE_OPT_KEEP_DASHDASH = 1, |
| 36 | PARSE_OPT_STOP_AT_NON_OPTION = 2, |
| 37 | PARSE_OPT_KEEP_ARGV0 = 4, |
| 38 | PARSE_OPT_KEEP_UNKNOWN = 8, |
| 39 | PARSE_OPT_NO_INTERNAL_HELP = 16, |
| 40 | }; |
| 41 | |
| 42 | enum parse_opt_option_flags { |
| 43 | PARSE_OPT_OPTARG = 1, |
| 44 | PARSE_OPT_NOARG = 2, |
| 45 | PARSE_OPT_NONEG = 4, |
| 46 | PARSE_OPT_HIDDEN = 8, |
| 47 | PARSE_OPT_LASTARG_DEFAULT = 16, |
Namhyung Kim | d152d1b | 2014-10-23 00:15:45 +0900 | [diff] [blame] | 48 | PARSE_OPT_DISABLED = 32, |
Namhyung Kim | 42bd71d | 2014-10-23 00:15:48 +0900 | [diff] [blame] | 49 | PARSE_OPT_EXCLUSIVE = 64, |
Wang Nan | 0c8c207 | 2015-03-13 12:51:54 +0000 | [diff] [blame] | 50 | PARSE_OPT_NOEMPTY = 128, |
Wang Nan | 48e1cab | 2015-12-14 10:39:22 +0000 | [diff] [blame] | 51 | PARSE_OPT_NOBUILD = 256, |
| 52 | PARSE_OPT_CANSKIP = 512, |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 53 | }; |
| 54 | |
| 55 | struct option; |
| 56 | typedef int parse_opt_cb(const struct option *, const char *arg, int unset); |
| 57 | |
| 58 | /* |
| 59 | * `type`:: |
| 60 | * holds the type of the option, you must have an OPTION_END last in your |
| 61 | * array. |
| 62 | * |
| 63 | * `short_name`:: |
| 64 | * the character to use as a short option name, '\0' if none. |
| 65 | * |
| 66 | * `long_name`:: |
| 67 | * the long option name, without the leading dashes, NULL if none. |
| 68 | * |
| 69 | * `value`:: |
| 70 | * stores pointers to the values to be filled. |
| 71 | * |
| 72 | * `argh`:: |
| 73 | * token to explain the kind of argument this option wants. Keep it |
Ingo Molnar | 65c9fee | 2018-12-03 11:22:00 +0100 | [diff] [blame] | 74 | * homogeneous across the repository. |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 75 | * |
| 76 | * `help`:: |
| 77 | * the short help associated to what the option does. |
| 78 | * Must never be NULL (except for OPTION_END). |
| 79 | * OPTION_GROUP uses this pointer to store the group header. |
| 80 | * |
| 81 | * `flags`:: |
| 82 | * mask of parse_opt_option_flags. |
Ingo Molnar | 65c9fee | 2018-12-03 11:22:00 +0100 | [diff] [blame] | 83 | * PARSE_OPT_OPTARG: says that the argument is optional (not for BOOLEANs) |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 84 | * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs |
| 85 | * PARSE_OPT_NONEG: says that this option cannot be negated |
| 86 | * PARSE_OPT_HIDDEN this option is skipped in the default usage, showed in |
| 87 | * the long one. |
| 88 | * |
| 89 | * `callback`:: |
| 90 | * pointer to the callback to use for OPTION_CALLBACK. |
| 91 | * |
| 92 | * `defval`:: |
| 93 | * default value to fill (*->value) with for PARSE_OPT_OPTARG. |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 94 | * OPTION_{BIT,SET_UINT,SET_PTR} store the {mask,integer,pointer} to put in |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 95 | * the value when met. |
| 96 | * CALLBACKS can use it like they want. |
Adrian Hunter | 167faf3 | 2013-11-18 11:55:56 +0200 | [diff] [blame] | 97 | * |
| 98 | * `set`:: |
| 99 | * whether an option was set by the user |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 100 | */ |
| 101 | struct option { |
| 102 | enum parse_opt_type type; |
| 103 | int short_name; |
| 104 | const char *long_name; |
| 105 | void *value; |
| 106 | const char *argh; |
| 107 | const char *help; |
Wang Nan | 48e1cab | 2015-12-14 10:39:22 +0000 | [diff] [blame] | 108 | const char *build_opt; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 109 | |
| 110 | int flags; |
| 111 | parse_opt_cb *callback; |
| 112 | intptr_t defval; |
Adrian Hunter | 167faf3 | 2013-11-18 11:55:56 +0200 | [diff] [blame] | 113 | bool *set; |
Adrian Hunter | ea8e08a | 2014-07-14 13:02:54 +0300 | [diff] [blame] | 114 | void *data; |
Namhyung Kim | 369a247 | 2016-10-24 12:00:02 +0900 | [diff] [blame] | 115 | const struct option *parent; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 116 | }; |
| 117 | |
Arnaldo Carvalho de Melo | 1967936 | 2010-05-17 15:39:16 -0300 | [diff] [blame] | 118 | #define check_vtype(v, type) ( BUILD_BUG_ON_ZERO(!__builtin_types_compatible_p(typeof(v), type)) + v ) |
| 119 | |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 120 | #define OPT_END() { .type = OPTION_END } |
Namhyung Kim | 369a247 | 2016-10-24 12:00:02 +0900 | [diff] [blame] | 121 | #define OPT_PARENT(p) { .type = OPTION_END, .parent = (p) } |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 122 | #define OPT_ARGUMENT(l, h) { .type = OPTION_ARGUMENT, .long_name = (l), .help = (h) } |
| 123 | #define OPT_GROUP(h) { .type = OPTION_GROUP, .help = (h) } |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 124 | #define OPT_BIT(s, l, v, h, b) { .type = OPTION_BIT, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h), .defval = (b) } |
Arnaldo Carvalho de Melo | 8035458 | 2010-05-17 15:51:10 -0300 | [diff] [blame] | 125 | #define OPT_BOOLEAN(s, l, v, h) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .help = (h) } |
Namhyung Kim | b272a59 | 2015-10-25 00:49:25 +0900 | [diff] [blame] | 126 | #define OPT_BOOLEAN_FLAG(s, l, v, h, f) { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), .value = check_vtype(v, bool *), .help = (h), .flags = (f) } |
Adrian Hunter | 167faf3 | 2013-11-18 11:55:56 +0200 | [diff] [blame] | 127 | #define OPT_BOOLEAN_SET(s, l, v, os, h) \ |
| 128 | { .type = OPTION_BOOLEAN, .short_name = (s), .long_name = (l), \ |
| 129 | .value = check_vtype(v, bool *), .help = (h), \ |
| 130 | .set = check_vtype(os, bool *)} |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 131 | #define OPT_INCR(s, l, v, h) { .type = OPTION_INCR, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) } |
| 132 | #define OPT_SET_UINT(s, l, v, h, i) { .type = OPTION_SET_UINT, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h), .defval = (i) } |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 133 | #define OPT_SET_PTR(s, l, v, h, p) { .type = OPTION_SET_PTR, .short_name = (s), .long_name = (l), .value = (v), .help = (h), .defval = (p) } |
Arnaldo Carvalho de Melo | 1967936 | 2010-05-17 15:39:16 -0300 | [diff] [blame] | 134 | #define OPT_INTEGER(s, l, v, h) { .type = OPTION_INTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, int *), .help = (h) } |
| 135 | #define OPT_UINTEGER(s, l, v, h) { .type = OPTION_UINTEGER, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned int *), .help = (h) } |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 136 | #define OPT_LONG(s, l, v, h) { .type = OPTION_LONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, long *), .help = (h) } |
Arnaldo Carvalho de Melo | 4ba8b3e | 2018-10-18 15:24:07 -0300 | [diff] [blame] | 137 | #define OPT_ULONG(s, l, v, h) { .type = OPTION_ULONG, .short_name = (s), .long_name = (l), .value = check_vtype(v, unsigned long *), .help = (h) } |
Arnaldo Carvalho de Melo | edb7c60 | 2010-05-17 16:22:41 -0300 | [diff] [blame] | 138 | #define OPT_U64(s, l, v, h) { .type = OPTION_U64, .short_name = (s), .long_name = (l), .value = check_vtype(v, u64 *), .help = (h) } |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 139 | #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) } |
Adrian Hunter | 2dd6d8a | 2015-04-30 17:37:32 +0300 | [diff] [blame] | 140 | #define OPT_STRING_OPTARG(s, l, v, a, h, d) \ |
| 141 | { .type = OPTION_STRING, .short_name = (s), .long_name = (l), \ |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 142 | .value = check_vtype(v, const char **), .argh =(a), .help = (h), \ |
Adrian Hunter | 2dd6d8a | 2015-04-30 17:37:32 +0300 | [diff] [blame] | 143 | .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d) } |
Jiri Olsa | b66fb1d | 2017-01-03 09:19:54 +0100 | [diff] [blame] | 144 | #define OPT_STRING_OPTARG_SET(s, l, v, os, a, h, d) \ |
| 145 | { .type = OPTION_STRING, .short_name = (s), .long_name = (l), \ |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 146 | .value = check_vtype(v, const char **), .argh = (a), .help = (h), \ |
Jiri Olsa | b66fb1d | 2017-01-03 09:19:54 +0100 | [diff] [blame] | 147 | .flags = PARSE_OPT_OPTARG, .defval = (intptr_t)(d), \ |
| 148 | .set = check_vtype(os, bool *)} |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 149 | #define OPT_STRING_NOEMPTY(s, l, v, a, h) { .type = OPTION_STRING, .short_name = (s), .long_name = (l), .value = check_vtype(v, const char **), .argh = (a), .help = (h), .flags = PARSE_OPT_NOEMPTY} |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 150 | #define OPT_DATE(s, l, v, h) \ |
Ingo Molnar | f37a291 | 2009-07-01 12:37:06 +0200 | [diff] [blame] | 151 | { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = "time", .help = (h), .callback = parse_opt_approxidate_cb } |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 152 | #define OPT_CALLBACK(s, l, v, a, h, f) \ |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 153 | { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f) } |
Arjan van de Ven | a79d7db | 2009-09-12 07:52:54 +0200 | [diff] [blame] | 154 | #define OPT_CALLBACK_NOOPT(s, l, v, a, h, f) \ |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 155 | { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f), .flags = PARSE_OPT_NOARG } |
Frederic Weisbecker | 5a4b181 | 2009-07-02 17:58:20 +0200 | [diff] [blame] | 156 | #define OPT_CALLBACK_DEFAULT(s, l, v, a, h, f, d) \ |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 157 | { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), .value = (v), .argh = (a), .help = (h), .callback = (f), .defval = (intptr_t)d, .flags = PARSE_OPT_LASTARG_DEFAULT } |
Akihiro Nagai | e4e18d5 | 2010-12-03 12:58:53 +0900 | [diff] [blame] | 158 | #define OPT_CALLBACK_DEFAULT_NOOPT(s, l, v, a, h, f, d) \ |
| 159 | { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l),\ |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 160 | .value = (v), .arg = (a), .help = (h), .callback = (f), .defval = (intptr_t)d,\ |
Akihiro Nagai | e4e18d5 | 2010-12-03 12:58:53 +0900 | [diff] [blame] | 161 | .flags = PARSE_OPT_LASTARG_DEFAULT | PARSE_OPT_NOARG} |
Adrian Hunter | ea8e08a | 2014-07-14 13:02:54 +0300 | [diff] [blame] | 162 | #define OPT_CALLBACK_OPTARG(s, l, v, d, a, h, f) \ |
| 163 | { .type = OPTION_CALLBACK, .short_name = (s), .long_name = (l), \ |
Soramichi AKIYAMA | f7ee659 | 2017-01-13 21:56:23 +0900 | [diff] [blame] | 164 | .value = (v), .argh = (a), .help = (h), .callback = (f), \ |
Adrian Hunter | ea8e08a | 2014-07-14 13:02:54 +0300 | [diff] [blame] | 165 | .flags = PARSE_OPT_OPTARG, .data = (d) } |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 166 | |
| 167 | /* parse_options() will filter out the processed options and leave the |
| 168 | * non-option argments in argv[]. |
| 169 | * Returns the number of arguments left in argv[]. |
Josh Poimboeuf | 24a88bd | 2015-12-15 09:39:34 -0600 | [diff] [blame] | 170 | * |
| 171 | * NOTE: parse_options() and parse_options_subcommand() may call exit() in the |
| 172 | * case of an error (or for 'special' options like --list-cmds or --list-opts). |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 173 | */ |
| 174 | extern int parse_options(int argc, const char **argv, |
| 175 | const struct option *options, |
| 176 | const char * const usagestr[], int flags); |
| 177 | |
Ramkumar Ramachandra | 09a71b9 | 2014-03-03 20:26:36 -0500 | [diff] [blame] | 178 | extern int parse_options_subcommand(int argc, const char **argv, |
| 179 | const struct option *options, |
| 180 | const char *const subcommands[], |
| 181 | const char *usagestr[], int flags); |
| 182 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 183 | extern NORETURN void usage_with_options(const char * const *usagestr, |
| 184 | const struct option *options); |
Namhyung Kim | c711836 | 2015-10-25 00:49:27 +0900 | [diff] [blame] | 185 | extern NORETURN __attribute__((format(printf,3,4))) |
| 186 | void usage_with_options_msg(const char * const *usagestr, |
| 187 | const struct option *options, |
| 188 | const char *fmt, ...); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 189 | |
| 190 | /*----- incremantal advanced APIs -----*/ |
| 191 | |
| 192 | enum { |
| 193 | PARSE_OPT_HELP = -1, |
| 194 | PARSE_OPT_DONE, |
Ramkumar Ramachandra | 09a71b9 | 2014-03-03 20:26:36 -0500 | [diff] [blame] | 195 | PARSE_OPT_LIST_OPTS, |
| 196 | PARSE_OPT_LIST_SUBCMDS, |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 197 | PARSE_OPT_UNKNOWN, |
| 198 | }; |
| 199 | |
| 200 | /* |
| 201 | * It's okay for the caller to consume argv/argc in the usual way. |
| 202 | * Other fields of that structure are private to parse-options and should not |
| 203 | * be modified in any way. |
| 204 | */ |
| 205 | struct parse_opt_ctx_t { |
| 206 | const char **argv; |
| 207 | const char **out; |
| 208 | int argc, cpidx; |
| 209 | const char *opt; |
Namhyung Kim | 42bd71d | 2014-10-23 00:15:48 +0900 | [diff] [blame] | 210 | const struct option *excl_opt; |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 211 | int flags; |
| 212 | }; |
| 213 | |
| 214 | extern int parse_options_usage(const char * const *usagestr, |
Namhyung Kim | ac69762 | 2013-11-01 16:33:11 +0900 | [diff] [blame] | 215 | const struct option *opts, |
| 216 | const char *optstr, |
| 217 | bool short_opt); |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 218 | |
Ingo Molnar | 0780060 | 2009-04-20 15:00:56 +0200 | [diff] [blame] | 219 | |
| 220 | /*----- some often used options -----*/ |
| 221 | extern int parse_opt_abbrev_cb(const struct option *, const char *, int); |
| 222 | extern int parse_opt_approxidate_cb(const struct option *, const char *, int); |
| 223 | extern int parse_opt_verbosity_cb(const struct option *, const char *, int); |
| 224 | |
| 225 | #define OPT__VERBOSE(var) OPT_BOOLEAN('v', "verbose", (var), "be verbose") |
| 226 | #define OPT__QUIET(var) OPT_BOOLEAN('q', "quiet", (var), "be quiet") |
| 227 | #define OPT__VERBOSITY(var) \ |
| 228 | { OPTION_CALLBACK, 'v', "verbose", (var), NULL, "be more verbose", \ |
| 229 | PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 }, \ |
| 230 | { OPTION_CALLBACK, 'q', "quiet", (var), NULL, "be more quiet", \ |
| 231 | PARSE_OPT_NOARG, &parse_opt_verbosity_cb, 0 } |
| 232 | #define OPT__DRY_RUN(var) OPT_BOOLEAN('n', "dry-run", (var), "dry run") |
| 233 | #define OPT__ABBREV(var) \ |
| 234 | { OPTION_CALLBACK, 0, "abbrev", (var), "n", \ |
| 235 | "use <n> digits to display SHA-1s", \ |
| 236 | PARSE_OPT_OPTARG, &parse_opt_abbrev_cb, 0 } |
| 237 | |
| 238 | extern const char *parse_options_fix_filename(const char *prefix, const char *file); |
| 239 | |
Namhyung Kim | d152d1b | 2014-10-23 00:15:45 +0900 | [diff] [blame] | 240 | void set_option_flag(struct option *opts, int sopt, const char *lopt, int flag); |
Wang Nan | 48e1cab | 2015-12-14 10:39:22 +0000 | [diff] [blame] | 241 | void set_option_nobuild(struct option *opts, int shortopt, const char *longopt, |
| 242 | const char *build_opt, bool can_skip); |
Josh Poimboeuf | 1843b4e | 2015-12-15 09:39:40 -0600 | [diff] [blame] | 243 | |
| 244 | #endif /* __SUBCMD_PARSE_OPTIONS_H */ |