Lines Matching defs:argv
13 * argv array to be processed. Once getopt has found all of the option
71 char *const argv[],
84 assert(argv != 0);
86 optarg = argv[optind++];
107 * If getopt finds an option character in argv that was not included in
116 char *argv[],
125 if ((argc > optind) && (argv != 0)) {
126 const char *arg = (const char *)argv[optind];
129 result = getopt_1char(argc, argv, opstring, arg[1]);
157 char *const argv[],
214 optarg = argv[++optind];
231 * If getopt finds an option character in argv that was not included
240 * specified by the argv and argc arguments. Options may be either short
244 char *argv[],
253 if ((argc > optind) && (argv != 0)) {
254 const char *arg = argv[optind];
260 argv,
266 argv,
277 * specified by the argv and argc arguments. Options may be either short
282 char *argv[],
291 if ((argc > optind) && (argv != 0)) {
292 const char *arg = argv[optind];
298 argv,
304 argv,
310 argv,