lilypond-0.1.27
[lilypond.git] / hdr / keyword.hh
blob152d9dc15d8a178b61fb0dac55ace5ec53df3c57
1 /*
2 keyword.hh -- part of LilyPond
4 (c) 1996,97 Han-Wen Nienhuys
5 */
7 #ifndef KEYWORD_HH
8 #define KEYWORD_HH
10 /* for the keyword table */
11 struct Keyword_ent
13 const char *name;
14 int tokcode;
17 struct Keyword_table
19 Keyword_ent *table;
20 int maxkey;
21 Keyword_table(Keyword_ent *);
22 int lookup(const char *s) const;
26 #endif // KEYWORD_HH