Home | History | Annotate | Download | only in tools

Lines Matching full:option

9   // `name' specifies the name of this option.
10 // An array of options must be terminated with an option whose name == NULL.
13 // `has_name' specifies whether an option takes an argument or not.
14 // 0 specifies that this option does not have any argument.
15 // 1 specifies that this option has an argument.
16 // 2 specifies that this option may have an argument.
24 // when cmdopt_next() finds this option.
33 // Option settings.
39 char *optarg; // Argument of the last option.
40 int optopt; // Label of the last option.
41 char *optlong; // Long option.
43 int longindex; // Index of the last long option.
51 // cmdopt_get() analyzes command line arguments and gets the next option.