usr.bin/awk/awk.h
222
#define isjump(n) ((n)->ctype == OJUMP)
usr.bin/awk/run.c
88
static Cell breakcell ={ OJUMP, JBREAK, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
90
static Cell contcell ={ OJUMP, JCONT, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
92
static Cell nextcell ={ OJUMP, JNEXT, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
94
static Cell nextfilecell ={ OJUMP, JNEXTFILE, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
96
static Cell exitcell ={ OJUMP, JEXIT, 0, 0, 0.0, NUM, NULL, NULL };
usr.bin/awk/run.c
98
static Cell retcell ={ OJUMP, JRET, 0, 0, 0.0, NUM, NULL, NULL };