Lines Matching refs:place
63 static char *place = EMSG; /* option letter processing */ in getopt() local
72 if (optreset || !*place) { /* update scanning pointer */ in getopt()
74 if (optind >= nargc || *(place = nargv[optind]) != '-') { in getopt()
75 place = EMSG; in getopt()
78 if (place[1] && *++place == '-') { /* found "--" */ in getopt()
80 place = EMSG; in getopt()
84 optopt = (int)*place++; in getopt()
86 if (!*place) in getopt()
101 if (!*place) in getopt()
110 if (!*place) in getopt()
114 if (*place) /* no white space */ in getopt()
115 optarg = place; in getopt()
117 place = EMSG; in getopt()
128 place = EMSG; in getopt()