From: fred Date: Thu, 7 Nov 1996 20:27:34 +0000 (+0000) Subject: lilypond-0.0.9 X-Git-Tag: release/1.5.59~6875 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e6169ff0b1d3a3359a983d7e6d4927a2b483d48a;p=lilypond.git lilypond-0.0.9 --- diff --git a/hdr/lexer.hh b/hdr/lexer.hh new file mode 100644 index 0000000000..e2537da410 --- /dev/null +++ b/hdr/lexer.hh @@ -0,0 +1,17 @@ +#ifndef LEXER_HH +#define LEXER_HH + +#include "proto.hh" + +void new_input(String s); +bool close_input(); +int yylex(); +void yyerror(const char *s); + +int lookup_keyword(String s); + +Identifier* lookup_identifier(String s); +void add_identifier(Identifier*i); +void delete_identifiers(); +void kill_lexer(); +#endif