• Home
  • Raw
  • Download

Lines Matching refs:place

101 static char *place = EMSG; /* option letter processing */  variable
183 current_argv = place; in parse_long_options()
328 if (optreset || !*place) { /* update scanning pointer */ in getopt_internal()
331 place = EMSG; in getopt_internal()
348 if (*(place = nargv[optind]) != '-' || in getopt_internal()
349 (place[1] == '\0' && strchr(options, '-') == NULL)) { in getopt_internal()
350 place = EMSG; /* found non-option */ in getopt_internal()
386 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') { in getopt_internal()
388 place = EMSG; in getopt_internal()
409 if (long_options != NULL && place != nargv[optind] && in getopt_internal()
410 (*place == '-' || (flags & FLAG_LONGONLY))) { in getopt_internal()
412 if (*place == '-') in getopt_internal()
413 place++; /* --foo long option */ in getopt_internal()
414 else if (*place != ':' && strchr(options, *place) != NULL) in getopt_internal()
420 place = EMSG; in getopt_internal()
425 if ((optchar = (int)*place++) == (int)':' || in getopt_internal()
426 (optchar == (int)'-' && *place != '\0') || in getopt_internal()
433 if (optchar == (int)'-' && *place == '\0') in getopt_internal()
435 if (!*place) in getopt_internal()
444 if (*place) /* no space */ in getopt_internal()
447 place = EMSG; in getopt_internal()
453 place = nargv[optind]; in getopt_internal()
456 place = EMSG; in getopt_internal()
460 if (!*place) in getopt_internal()
464 if (*place) /* no white space */ in getopt_internal()
465 optarg = place; in getopt_internal()
468 place = EMSG; in getopt_internal()
476 place = EMSG; in getopt_internal()