]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/keyword.hh
release: 1.3.13
[lilypond.git] / lily / include / keyword.hh
1 /*
2   keyword.hh -- part of GNU LilyPond
3
4   (c) 1996--1999 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   char const *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 (char const *s) const;
23 };
24
25
26 #endif // KEYWORD_HH
27