1: #include "../h/keyword.h"
2: #include "sym.h"
3:
4: /*
5: * Keyword table.
6: */
7:
8: struct keyent keytab[] = {
9: "ascii", K_ASCII,
10: "clock", K_CLOCK,
11: "cset", K_CSET,
12: "date", K_DATE,
13: "dateline", K_DATELINE,
14: "errout", K_ERROUT,
15: "fail", K_FAIL,
16: "host", K_HOST,
17: "input", K_INPUT,
18: "lcase", K_LCASE,
19: "level", K_LEVEL,
20: "main", K_MAIN,
21: "null", K_NULL,
22: "output", K_OUTPUT,
23: "pos", K_POS,
24: "random", K_RANDOM,
25: "source", K_SOURCE,
26: "subject", K_SUBJECT,
27: "time", K_TIME,
28: "trace", K_TRACE,
29: "ucase", K_UCASE,
30: "version", K_VERSION,
31: "options", K_OPTIONS,
32: "", -1
33: };
Defined variables
keytab
defined in line
8;
never used