summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-16 16:25:59 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-09-16 16:25:59 -0300
commit60cc473bcfce079d1525fcffcfdfbeb66e35afa2 (patch)
tree368fec478cec8637af6346e69ec66722ab38a9cf /llex.h
parent43a2ee6ea1b7825c1892de614cb38a3fe487a19f (diff)
downloadlua-github-60cc473bcfce079d1525fcffcfdfbeb66e35afa2.tar.gz
Lexical Analizer
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/llex.h b/llex.h
new file mode 100644
index 00000000..709f98b6
--- /dev/null
+++ b/llex.h
@@ -0,0 +1,21 @@
+/*
+** $Id: $
+** Lexical Analizer
+** See Copyright Notice in lua.h
+*/
+
+#ifndef llex_h
+#define llex_h
+
+#include "lobject.h"
+#include "lzio.h"
+
+
+extern int luaX_linenumber;
+
+int luaY_lex (void);
+void luaX_setinput (ZIO *z);
+char *luaX_lasttoken (void);
+
+
+#endif