lilypond-0.0.3
[lilypond.git] / lexer.hh
blob28753603ef35731e43b15d0ee39568dda2e1cb3e
1 #ifndef LEXER_HH
2 #define LEXER_HH
4 #include "proto.hh"
6 void new_input(String s);
7 bool close_input();
8 int yylex();
9 void yyerror(char *s);
11 int lookup_keyword(String s);
12 Identifier* lookup_identifier(String s);
14 #endif