Lines Matching defs:option
55 struct option;
56 typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
60 * holds the type of the option, you must have an OPTION_END last in your
64 * the character to use as a short option name, '\0' if none.
67 * the long option name, without the leading dashes, NULL if none.
73 * token to explain the kind of argument this option wants. Keep it
77 * the short help associated to what the option does.
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
99 * whether an option was set by the user
101 struct option {
115 const struct option *parent;
170 * non-option argments in argv[].
177 const struct option *options,
181 const struct option *options,
186 const struct option *options);
189 const struct option *options,
212 const struct option *excl_opt;
217 const struct option *opts,
223 extern int parse_opt_abbrev_cb(const struct option *, const char *, int);
224 extern int parse_opt_approxidate_cb(const struct option *, const char *, int);
225 extern int parse_opt_verbosity_cb(const struct option *, const char *, int);
242 void set_option_flag(struct option *opts, int sopt, const char *lopt, int flag);
243 void set_option_nobuild(struct option *opts, int shortopt, const char *longopt,