Home | History | Annotate | Download | only in stdlib

Lines Matching defs:place

107 static char *place = EMSG; /* option letter processing */
202 current_argv = place;
391 if (optreset || !*place) { /* update scanning pointer */
394 place = EMSG;
411 if (*(place = nargv[optind]) != '-' ||
413 place[1] == '\0') {
415 (place[1] == '\0' && strchr(options, '-') == NULL)) {
417 place = EMSG; /* found non-option */
453 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
455 place = EMSG;
476 if (long_options != NULL && place != nargv[optind] &&
477 (*place == '-' || (flags & FLAG_LONGONLY))) {
482 if (*place == '-') {
483 place++; /* --foo long option */
487 } else if (*place != ':' && strchr(options, *place) != NULL)
493 place = EMSG;
498 if ((optchar = (int)*place++) == (int)':' ||
499 (optchar == (int)'-' && *place != '\0') ||
506 if (optchar == (int)'-' && *place == '\0')
508 if (!*place)
523 if (*place) /* no space */
526 place = EMSG;
532 place = nargv[optind];
538 place = EMSG;
542 if (!*place)
546 if (*place) /* no white space */
547 optarg = place;
550 place = EMSG;
558 place = EMSG;