Lines Matching defs:argv
22 char **copy_argv(int *argc, char *argv[])
26 * copy argv "safely."
32 * pointers for argv[].
33 * Fix 1: For a 32-bit argv[], when we're using 64-bit pointers
35 * duplicate of argv[].
37 * to NULL-terminate a 64-bit argv[]. (As this was written, the
40 * 64-bit argv[argc] for NULL, and, if necessary, use a
41 * (properly) NULL-terminated (64-bit) duplicate of argv[].
42 * The same code is used in either case to duplicate argv[].
68 newargv[i] = argv[i];