Lines Matching defs:option
53 struct option;
54 typedef int parse_opt_cb(const struct option *, const char *arg, int unset);
58 * holds the type of the option, you must have an OPTION_END last in your
62 * the character to use as a short option name, '\0' if none.
65 * the long option name, without the leading dashes, NULL if none.
71 * token to explain the kind of argument this option wants. Keep it
75 * the short help associated to what the option does.
82 * PARSE_OPT_NOARG: says that this option takes no argument, for CALLBACKs
83 * PARSE_OPT_NONEG: says that this option cannot be negated
84 * PARSE_OPT_HIDDEN this option is skipped in the default usage, showed in
97 * whether an option was set by the user
99 struct option {
113 const struct option *parent;
171 * non-option argments in argv[].
178 const struct option *options,
182 const struct option *options,
187 const struct option *options);
190 const struct option *options,
213 const struct option *excl_opt;
218 const struct option *opts,
224 extern int parse_opt_abbrev_cb(const struct option *, const char *, int);
225 extern int parse_opt_approxidate_cb(const struct option *, const char *, int);
226 extern int parse_opt_verbosity_cb(const struct option *, const char *, int);
243 void set_option_flag(struct option *opts, int sopt, const char *lopt, int flag);
244 void set_option_nobuild(struct option *opts, int shortopt, const char *longopt,