From e6169ff0b1d3a3359a983d7e6d4927a2b483d48a Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 7 Nov 1996 20:27:34 +0000 Subject: [PATCH] lilypond-0.0.9 --- hdr/lexer.hh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 hdr/lexer.hh 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 -- 2.39.5