Lines Matching refs:place
60 static char *place = EMSG; /* option letter processing */ in getopt() local
64 if (optreset || !*place) { /* update scanning pointer */ in getopt()
66 if (optind >= nargc || *(place = nargv[optind]) != '-') { in getopt()
67 place = EMSG; in getopt()
70 if (place[1] && *++place == '-') { /* found "--" */ in getopt()
72 place = EMSG; in getopt()
76 if ((optopt = (int)*place++) == (int)':' || in getopt()
84 if (!*place) in getopt()
98 if (!*place) in getopt()
102 if (*place) /* no white space */ in getopt()
103 optarg = place; in getopt()
105 place = EMSG; in getopt()
120 place = EMSG; in getopt()