Lines Matching defs:options
88 isc_commandline_parse(int argc, char * const *argv, const char *options) {
90 const char *option; /* Index into *options of option. */
92 REQUIRE(argc >= 0 && argv != NULL && options != NULL);
118 * Found '--' to signal end of options. Advance
128 option = strchr(options, isc_commandline_option);
131 * Ensure valid option has been passed as specified by options string.
133 * distinguish ':' from the argument specifier in the options string.
139 if (isc_commandline_errprint && *options != ':')
187 * when ':' starts options string, per historical spec.
189 if (*options == ':')