blob: df4547ad7698dd82ae3b8a9ec4a66a1dc3f7a0fe (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* for the keyword table */
struct Keyword_ent
{
const char *name;
int tokcode;
};
struct Keyword_table
{
Keyword_ent *table;
int maxkey;
Keyword_table(Keyword_ent *);
int lookup(const char *s) const;
};
|