]> git.donarmstrong.com Git - lilypond.git/blob - keyword.hh
release: 0.0.6
[lilypond.git] / keyword.hh
1 /* for the keyword table */
2 struct Keyword_ent
3 {
4     const char   *name;
5     int     tokcode;
6 };
7
8 struct Keyword_table
9 {
10     Keyword_ent *table;
11     int     maxkey;
12     Keyword_table(Keyword_ent *);
13     int     lookup(const char *s) const;
14 };