Home | History | Annotate | Download | only in unistd

Lines Matching defs:place

96 static char *place = EMSG; /* option letter processing */
178 current_argv = place;
326 if (optreset || !*place) { /* update scanning pointer */
329 place = EMSG;
346 if (*(place = nargv[optind]) != '-' ||
347 (place[1] == '\0' && strchr(options, '-') == NULL)) {
348 place = EMSG; /* found non-option */
384 if (place[1] != '\0' && *++place == '-' && place[1] == '\0') {
386 place = EMSG;
407 if (long_options != NULL && place != nargv[optind] &&
408 (*place == '-' || (flags & FLAG_LONGONLY))) {
410 if (*place == '-')
411 place++; /* --foo long option */
412 else if (*place != ':' && strchr(options, *place) != NULL)
418 place = EMSG;
423 if (((optchar = (int)*place++) == (int)':') ||
424 (optchar == (int)'-' && *place != '\0') ||
431 if (optchar == (int)'-' && *place == '\0')
433 if (!*place)
442 if (*place) /* no space */
445 place = EMSG;
451 place = nargv[optind];
454 place = EMSG;
458 if (!*place)
462 if (*place) /* no white space */
463 optarg = place;
467 place = EMSG;
483 place = EMSG;