aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-13 14:30:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-13 14:30:39 -0300
commit772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6 (patch)
treecb6b9630fbfea5a1e4fcd9e7cabf7011f2fc403b
parentf1a1eda7c5d23776834afeb6a13ba943dbaa8870 (diff)
downloadlua-772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6.tar.gz
lua-772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6.tar.bz2
lua-772f25d3dd3c5078988b8c06ddf64c3b78f7dfb6.zip
new header for lex.c
-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