lilypond-0.0.3
[lilypond.git] / keyword.hh
blobaa87a8dc1af7591d595219c9ed722753142dd3ef
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{