Lines Matching defs:options
48 * In a typical while loop for parsing getopt options, ensure that each
49 * option from the options string is handled, and that each handled option
50 * is listed in the options string.
63 * The options string from the getopt call. Whenever an option is
69 char *options;
119 if (opt == ':' && ck.options[0] != ':')
122 char *optptr = strchr(ck.options, opt);
127 /* option '%c' should be listed in the options string */
134 for (const char *opt = ck.options; *opt != '\0'; opt++) {
151 if (!is_getopt_condition(tn, &ck.options))
194 free(ck.options);
195 ck.options = NULL;