Lines Matching refs:place
57 static char *place = EMSG; /* option letter processing */ in getopt() local
60 if (optreset || !*place) { /* update scanning pointer */ in getopt()
62 if (optind >= nargc || *(place = nargv[optind]) != '-') { in getopt()
63 place = EMSG; in getopt()
66 if (place[1] && *++place == '-') { /* found "--" */ in getopt()
68 place = EMSG; in getopt()
72 if ((optopt = (int)*place++) == (int)':' || in getopt()
80 if (!*place) in getopt()
88 if (!*place) in getopt()
92 if (*place) /* no white space */ in getopt()
93 optarg = place; in getopt()
95 place = EMSG; in getopt()
104 place = EMSG; in getopt()