Lines Matching defs:option
51 struct option;
52 typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
56 * holds the type of the option, you must have an OPTION_END last in your
60 * the character to use as a short option name, '\0' if none.
63 * the long option name, without the leading dashes, NULL if none.
69 * token to explain the kind of argument this option wants. Keep it
73 * the short help associated to what the option does.
80 * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs
81 * PARSE_OPT_NONEG: says that this option cannot be negated
82 * PARSE_OPT_HIDDEN this option is skipped in the default usage, showed in
95 * whether an option was set by the user
97 struct option {
111 const struct option *parent;
167 * non-option argments in argv[].
174 const struct option *options,
178 const struct option *options,
183 const struct option *options);
186 const struct option *options,
209 const struct option *excl_opt;
214 const struct option *opts,
220 extern int parse_opt_abbrev_cb(const struct option *, const char *, int);
221 extern int parse_opt_approxidate_cb(const struct option *, const char *, int);
222 extern int parse_opt_verbosity_cb(const struct option *, const char *, int);
239 void set_option_flag(struct option *opts, int sopt, const char *lopt, int flag);
240 void set_option_nobuild(struct option *opts, int shortopt, const char *longopt,