]> git.donarmstrong.com Git - lilypond.git/blob - lexer.hh
31be74169fa52b1443c0ec37ee44ca5bc3a83579
[lilypond.git] / lexer.hh
1 #ifndef LEXER_HH
2 #define LEXER_HH
3
4 #include "proto.hh"
5
6 void new_input(String s);
7 bool close_input();
8 int yylex();
9 void yyerror(char *s);
10
11 int lookup_keyword(String s);
12
13 Identifier* lookup_identifier(String s);
14 void add_identifier(Identifier*i);
15 #endif