Home
last modified time | relevance | path

Searched refs:nextword (Results 1 – 9 of 9) sorted by relevance

/dragonfly/contrib/tcsh-6/
H A Dtc.sched.c188 struct wordent cmd, *nextword, *lastword; in sched_run() local
220 nextword = xcalloc(1, sizeof cmd); in sched_run()
221 nextword->word = Strsave(cp); in sched_run()
222 lastword->next = nextword; in sched_run()
223 nextword->prev = lastword; in sched_run()
224 lastword = nextword; in sched_run()
H A Dtc.func.c282 lastword->next = nextword; in dolist()
283 nextword->prev = lastword; in dolist()
284 lastword = nextword; in dolist()
287 lastword->next = nextword; in dolist()
288 nextword->prev = lastword; in dolist()
291 lastword = nextword; in dolist()
294 lastword->next = nextword; in dolist()
295 nextword->prev = lastword; in dolist()
300 lastword = nextword; in dolist()
307 lastword = nextword; in dolist()
[all …]
/dragonfly/usr.bin/mail/
H A Dhead.c102 cp = nextword(cp, word); in parse()
110 cp = nextword(cp, word); in parse()
114 cp = nextword(cp, word); in parse()
246 nextword(char *wp, char *wbuf) in nextword() function
H A Dextern.h58 char *nextword(char *, char *);
/dragonfly/games/boggle/mkindex/
H A Dmkindex.c43 char *nextword(FILE *, char *, int *, int *);
54 while (nextword(stdin, buf, &clen, &rlen) != NULL) { in main()
74 nextword(FILE *fp, char *buffer, int *clen, int *rlen) in nextword() function
/dragonfly/games/boggle/boggle/
H A Dbog.c229 while ((w = nextword(fp)) != NULL) { in batchword()
472 while ((w = nextword(dictfp)) != NULL) { in validword()
507 while ((w = nextword(dictfp)) != NULL) { in checkdict()
H A Dextern.h74 char *nextword(FILE *);
H A Dword.c56 nextword(FILE *fp) in nextword() function
/dragonfly/bin/sh/
H A Dexpand.c171 nextword(char c, int flag, char *p, struct worddest *dst) in nextword() function
192 #define NEXTWORD(c, flag, p, dstlist) p = nextword(c, flag, p, dstlist)