lilypond-0.0.5
[lilypond.git] / keyword.hh
blob42267ef57a5cb29167ffc12eed102022590763bf
1 /* for the keyword table */
2 struct Keyword_ent
4 const char *name;
5 int tokcode;
6 };
8 struct Keyword_table
10 Keyword_ent *table;
11 int maxkey;
12 Keyword_table(Keyword_ent *);
13 int lookup(const char *s) const;
16 struct Identifier
18 void *data;
19 int type;
21 Identifier();
22 ~Identifier();