Home | History | Annotate | Download | only in lib

Lines Matching refs:option

9    (at your option) any later version.
42 const struct option *long_options, int *opt_index)
50 const struct option *long_options, int *opt_index,
57 /* Like getopt_long, but '-' as well as '--' can indicate a long option.
58 If an option that starts with '-' (not '--') doesn't match a long option,
59 but does match a short option, it is parsed as a short option
65 const struct option *long_options, int *opt_index)
73 const struct option *long_options, int *opt_index,
96 static const struct option long_options[] =
115 printf ("option %s", long_options[option_index].name);
134 printf ("option %c\n", c);
138 printf ("option a\n");
142 printf ("option b\n");
146 printf ("option c with value `%s'\n", optarg);
150 printf ("option d with value `%s'\n", optarg);
163 printf ("non-option ARGV-elements: ");