From 772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 13 Feb 1996 14:30:39 -0300 Subject: new header for lex.c --- lex.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lex.h diff --git a/lex.h b/lex.h new file mode 100644 index 00000000..e56dbf25 --- /dev/null +++ b/lex.h @@ -0,0 +1,18 @@ +/* +** lex.h +** TecCGraf - PUC-Rio +** $Id: $ +*/ + +#ifndef lex_h +#define lex_h + + +typedef int (*Input) (void); + +void lua_setinput (Input fn); /* from "lex.c" module */ +char *lua_lasttext (void); /* from "lex.c" module */ +int luaY_lex (void); /* from "lex.c" module */ + + +#endif -- cgit v1.2.3-55-g6feb