Home
last modified time | relevance | path

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

/freebsd/contrib/tcsh/
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.c222 struct wordent cmd, *nextword, *lastword; in dolist() local
262 nextword = xcalloc(1, sizeof cmd); in dolist()
263 nextword->word = Strsave(lspath); in dolist()
264 lastword->next = nextword; in dolist()
265 nextword->prev = lastword; in dolist()
266 lastword = nextword; in dolist()
267 nextword = xcalloc(1, sizeof cmd); in dolist()
268 nextword->word = Strsave(STRmCF); in dolist()
269 lastword->next = nextword; in dolist()
270 nextword->prev = lastword; in dolist()
[all …]
/freebsd/usr.bin/mail/
H A Dhead.c100 cp = nextword(cp, word); in parse()
108 cp = nextword(cp, word); in parse()
112 cp = nextword(cp, word); in parse()
244 nextword(char *wp, char *wbuf) in nextword() function
H A Dextern.h56 char *nextword(char *, char *);
/freebsd/bin/sh/
H A Dexpand.c163 nextword(char c, int flag, char *p, struct worddest *dst) in nextword() function
184 #define NEXTWORD(c, flag, p, dstlist) p = nextword(c, flag, p, dstlist)