Lines Matching full:place
22 static const char *place = EMSG; /* option letter processing */ in getopt() local
25 if (optreset || !*place) { /* update scanning pointer */ in getopt()
27 if (optind >= nargc || *(place = nargv[optind]) != '-') { in getopt()
28 place = EMSG; in getopt()
31 if (place[1] && *++place == '-') { /* found "--" */ in getopt()
33 place = EMSG; in getopt()
37 if ((optopt = (int)*place++) == (int)':' || in getopt()
45 if (!*place) in getopt()
53 if (!*place) in getopt()
57 if (*place) /* no white space */ in getopt()
58 optarg = place; in getopt()
60 place = EMSG; in getopt()
69 place = EMSG; in getopt()