Lines Matching defs:option
61 /* Legitimate values for option.has_arg. */
68 /* Long option table entry for get_opt_long. */
69 struct option {
70 /* The name of the option. */
74 * Indicates whether the option takes an argument.
79 /* If not null, when option present, *flag is set to val. */
83 * The value associated with this option to return
90 * This variable is set by getopt to point at the value of the option
97 * if it encounters an unspecified option, or a missing argument.
104 * argv array to be processed. Once getopt has found all of the option
106 * non-option arguments begin. The initial value of this variable is 1.
111 * When getopt encounters an unknown option character or an option with a
112 * missing required argument, it stores that option character in this
150 * uses '/' instead of '-' as the command line option delimiter.
158 * The getopt function gets the next option argument from the argument list
166 * getopt_long gets the next option argument from the argument list
173 const struct option *longopts,
177 * getopt_long_only gets the next option argument from the argument list
185 const struct option *longopts,