]> git.donarmstrong.com Git - lilypond.git/blob - hdr/keyword.hh
partial: 0.0.39-1.hanjan
[lilypond.git] / hdr / keyword.hh
1 /*
2   keyword.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef KEYWORD_HH
8 #define KEYWORD_HH
9
10 /* for the keyword table */
11 struct Keyword_ent
12 {
13     const char   *name;
14     int     tokcode;
15 };
16
17 struct Keyword_table
18 {
19     Keyword_ent *table;
20     int     maxkey;
21     Keyword_table(Keyword_ent *);
22     int     lookup(const char *s) const;
23 };
24
25
26 #endif // KEYWORD_HH
27