From: fred Date: Mon, 19 Aug 1996 21:47:47 +0000 (+0000) Subject: lilypond-0.0.1 X-Git-Tag: release/1.5.59~7211 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=23f7e1a5d336d242c4f07f54d9a4535a72f7c957;p=lilypond.git lilypond-0.0.1 --- diff --git a/lexer.hh b/lexer.hh new file mode 100644 index 0000000000..28753603ef --- /dev/null +++ b/lexer.hh @@ -0,0 +1,14 @@ +#ifndef LEXER_HH +#define LEXER_HH + +#include "proto.hh" + +void new_input(String s); +bool close_input(); +int yylex(); +void yyerror(char *s); + +int lookup_keyword(String s); +Identifier* lookup_identifier(String s); + +#endif