aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lex.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lex.h b/lex.h
new file mode 100644
index 00000000..e56dbf25
--- /dev/null
+++ b/lex.h
@@ -0,0 +1,18 @@
1/*
2** lex.h
3** TecCGraf - PUC-Rio
4** $Id: $
5*/
6
7#ifndef lex_h
8#define lex_h
9
10
11typedef int (*Input) (void);
12
13void lua_setinput (Input fn); /* from "lex.c" module */
14char *lua_lasttext (void); /* from "lex.c" module */
15int luaY_lex (void); /* from "lex.c" module */
16
17
18#endif