Home | History | Annotate | Download | only in src

Lines Matching refs:first_nonopt

988   int first_nonopt = *argc;        // for non-options moved to the end
991 for (int i = 1; i < first_nonopt; i++) {
999 first_nonopt--; // we've been pushed onto the stack
1009 first_nonopt = i+1;
1028 if (i+1 >= first_nonopt) {
1068 (*argv)[first_nonopt-1] = (*argv)[0];
1069 (*argv) += (first_nonopt-1);
1070 (*argc) -= (first_nonopt-1);
1071 first_nonopt = 1; // because we still don't count argv[0]
1076 return first_nonopt;