Symbol: nextopt
bin/sh/alias.c
263
(void) nextopt(NULL); /* consume possible "--" */
bin/sh/alias.c
299
while ((i = nextopt("a")) != '\0') {
bin/sh/cd.c
380
while ((i = nextopt("LP")) != '\0')
bin/sh/cd.c
95
while ((opt = nextopt("Pe")) != '\0')
bin/sh/eval.c
1659
(void) nextopt(NULL); /* ignore a leading "--" */
bin/sh/eval.c
1823
(void) nextopt(""); /* ignore a leading "--" */
bin/sh/eval.c
1874
nextopt("");
bin/sh/exec.c
1115
while ((c = nextopt("vVp")) != 0) {
bin/sh/exec.c
410
while ((c = nextopt("bcefqrsuv")) != '\0')
bin/sh/jobs.c
1055
while ((c = nextopt("fgs:")) != 0) {
bin/sh/jobs.c
285
nextopt("");
bin/sh/jobs.c
292
nextopt("");
bin/sh/jobs.c
349
nextopt("");
bin/sh/jobs.c
555
while ((m = nextopt("lpZ")))
bin/sh/jobs.c
729
while ((i = nextopt("np:")) != '\0') {
bin/sh/jobs.c
962
while ((i = nextopt("gjp"))) {
bin/sh/miscbltin.c
252
while ((i = nextopt(READ_OPTS)) != '\0') {
bin/sh/miscbltin.c
465
while ((i = nextopt("S")) != '\0') {
bin/sh/miscbltin.c
665
while ((optc = nextopt(OPTSTRING)) != '\0')
bin/sh/options.c
430
(void) nextopt(NULL); /* ignore '--' as leading option */
bin/sh/options.c
478
(void) nextopt(NULL); /* ignore '--' as leading option */
bin/sh/options.h
73
int nextopt(const char *);
bin/sh/var.c
1045
while ((c = nextopt(EXPORT_OPTS)) != '\0') {
bin/sh/var.c
1188
while ((c = nextopt("INx")) != '\0')
bin/sh/var.c
1338
while ((i = nextopt("efvx")) != '\0') {
bin/sh/var.c
1813
(void) nextopt("");
usr.bin/config/main.c
1180
if (do_option(opttab, &options, &nextopt, name, value, "options",
usr.bin/config/main.c
1195
if (undo_option(opttab, &options, &nextopt, name, "options", nowarn))
usr.bin/config/main.c
177
static struct nvlist **nextopt;
usr.bin/config/main.c
394
nextopt = &options;
usr.bin/tftp/tftp.c
109
nextopt = valp + l;
usr.bin/tftp/tftp.c
113
opt = nextopt;
usr.bin/tftp/tftp.c
155
opt = nextopt;
usr.bin/tftp/tftp.c
93
char *opt, *endp, *nextopt, *valp;