Home | History | Annotate | Download | only in src

Lines Matching defs:argv

77 	Char   **argv;		/* Argument list			 */
98 tok->argv[tok->argc++] = tok->wstart;
99 tok->argv[tok->argc] = NULL;
123 tok->argv = tok_malloc(sizeof(*tok->argv) * tok->amax);
124 if (tok->argv == NULL) {
129 tok->argv[0] = NULL;
132 tok_free(tok->argv);
171 tok_free(tok->argv);
190 * argv argument array
191 * cursorc if !NULL, argv element containing cursor
192 * cursorv if !NULL, offset in argv[cursorc] of cursor
196 int *argc, const Char ***argv, int *cursorc, int *cursoro)
406 tok->argv[i] =
407 (tok->argv[i] - tok->wspace) + s;
418 p = tok_realloc(tok->argv, tok->amax * sizeof(*p));
421 tok->argv = p;
434 *argv = (const Char **)tok->argv;
445 const Char ***argv)
452 return FUN(tok,line(tok, &li, argc, argv, NULL, NULL));