Lines Matching refs:place
50 static char *place = EMSG; /* option letter processing */ in getopt() local
53 if (optreset || !*place) { /* update scanning pointer */ in getopt()
55 if (optind >= nargc || *(place = nargv[optind]) != '-') { in getopt()
56 place = EMSG; in getopt()
59 if (place[1] && *++place == '-') { /* found "--" */ in getopt()
61 place = EMSG; in getopt()
65 if ((optopt = (int)*place++) == (int)':' || in getopt()
73 if (!*place) in getopt()
81 if (!*place) in getopt()
85 if (*place) /* no white space */ in getopt()
86 optarg = place; in getopt()
88 place = EMSG; in getopt()
97 place = EMSG; in getopt()