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
96 struct option {
138 * non-option argments in argv[].
142 const struct option *options,
146 const struct option *options);
170 const struct option *opts);
176 const struct option *options,
183 extern int parse_opt_abbrev_cb(const struct option *, const char *, int);
184 extern int parse_opt_approxidate_cb(const struct option *, const char *, int);
185 extern int parse_opt_verbosity_cb(const struct option *, const char *, int);