Home | History | Annotate | Download | only in apply

Lines Matching defs:nargs

62 	int ch, debug, i, magic, n, nargs, rval;
70 nargs = -1;
85 if (nargs != -1)
88 nargs = optopt - '0';
118 * the end to consume (nargs) arguments each time round the loop.
126 /* If nargs not set, default to a single argument. */
127 if (nargs == -1)
128 nargs = 1;
132 for (i = 1; i <= nargs; i++)
136 * If nargs set to the special value 0, eat a single
139 if (nargs == 0)
140 nargs = 1;
143 nargs = n;
159 for (rval = 0; argc > nargs; argc -= nargs, argv += nargs) {
164 for (l = strlen(cmd), i = 0; i < nargs; i++)
196 (nargs - argc) ? "s" : "", argv[argc - 1]);