Lines Matching refs:argv
71 /*% Index into parent argv vector. */
92 * Parse argc/argv argument vector.
95 isc_commandline_parse(int argc, char * const *argv, const char *options) {
99 REQUIRE(argc >= 0 && argv != NULL && options != NULL);
103 * the previous argv was finished.
112 isc_commandline_progname = argv[0];
115 *(place = argv[isc_commandline_index]) != '-') {
126 * index to next argv, the first non-option.
165 * Skip to next argv if at the end of the current argv.
176 * Option is in this argv, -D1 style.
182 * Option is next argv, -D 1 style.
184 isc_commandline_argument = argv[isc_commandline_index];
188 * Argument needed, but no more argv.
215 * Point to argv that follows argument.