Lines Matching full:option
11 Free Software Foundation; either version 2, or (at your option) any
71 const struct option *long_options, int *opt_index)
76 /* Like getopt_long, but '-' as well as '--' can indicate a long option.
77 If an option that starts with '-' (not '--') doesn't match a long option,
78 but does match a short option, it is parsed as a short option
83 const struct option *long_options, int *opt_index)
106 static struct option long_options[] =
125 printf ("option %s", long_options[option_index].name);
144 printf ("option %c\n", c);
148 printf ("option a\n");
152 printf ("option b\n");
156 printf ("option c with value `%s'\n", optarg);
160 printf ("option d with value `%s'\n", optarg);
173 printf ("non-option ARGV-elements: ");