lilypond-0.0.1
[lilypond.git] / table.cc
blob45e6f4a0e476887a5e11312ef44cdb83c2be2f8a
1 #include "glob.hh"
2 #include "string.hh"
3 #include "keyword.hh"
4 #include "parser.hh"
6 static Keyword_ent the_key_tab[]={
7 "voice", VOICE,
8 "rhythmstaff", RHYTHMSTAFF,
9 "score", SCORE,
10 "bar", BAR,
11 0,0
12 } ;
15 int
16 lookup_keyword(String s)
18 static Keyword_table table(the_key_tab);
19 return table.lookup(s);
22 Identifier*
23 lookup_identifier(String s)
25 assert(false);
26 return 0;