Lines Matching full:option
10 Free Software Foundation; either version 2, or (at your option) any
74 const struct option *long_options;
80 /* Like getopt_long, but '-' as well as '--' can indicate a long option.
81 If an option that starts with '-' (not '--') doesn't match a long option,
82 but does match a short option, it is parsed as a short option
90 const struct option *long_options;
116 static struct option long_options[] =
135 printf ("option %s", long_options[option_index].name);
154 printf ("option %c\n", c);
158 printf ("option a\n");
162 printf ("option b\n");
166 printf ("option c with value `%s'\n", optarg);
170 printf ("option d with value `%s'\n", optarg);
183 printf ("non-option ARGV-elements: ");