Lines Matching defs:nargs
51 int nargs = -1;
149 for (; nargs >= 0; nargs--) {
150 if (args[nargs] != NULL)
151 free(args[nargs]);
153 args[nargs = 0] = strtok(&line[6], WS);
154 if (args[nargs] == NULL)
157 args[nargs] = strdup(args[nargs]);
158 while ((args[++nargs] = strtok(NULL, WS)) != NULL)
159 args[nargs] = strdup(args[nargs]);
175 if (nargs == -1)
178 while ((c = getopt_long(nargs, args, optstring,
229 snprintf(arg, sizeof(arg), "%d", nargs - optind);