Home
last modified time | relevance | path

Searched refs:nonopt_start (Results 1 – 1 of 1) sorted by relevance

/hardware/google/aemu/windows/src/
Dgetopt.c95 static int nonopt_start = -1; /* first non option argument (for permute) */ variable
340 permute_args(nonopt_start, nonopt_end, optind, nargv); in getopt_internal()
341 optind -= nonopt_end - nonopt_start; in getopt_internal()
342 } else if (nonopt_start != -1) { in getopt_internal()
347 optind = nonopt_start; in getopt_internal()
349 nonopt_start = nonopt_end = -1; in getopt_internal()
371 if (nonopt_start == -1) in getopt_internal()
372 nonopt_start = optind; in getopt_internal()
374 permute_args(nonopt_start, nonopt_end, optind, nargv); in getopt_internal()
375 nonopt_start = optind - (nonopt_end - nonopt_start); in getopt_internal()
[all …]