aboutsummaryrefslogtreecommitdiff
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-60cc473bcfce079d1525fcffcfdfbeb66e35afa2.tar.gz
lua-60cc473bcfce079d1525fcffcfdfbeb66e35afa2.tar.bz2
lua-60cc473bcfce079d1525fcffcfdfbeb66e35afa2.zip
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 @@
1/*
2** $Id: $
3** Lexical Analizer
4** See Copyright Notice in lua.h
5*/
6
7#ifndef llex_h
8#define llex_h
9
10#include "lobject.h"
11#include "lzio.h"
12
13
14extern int luaX_linenumber;
15
16int luaY_lex (void);
17void luaX_setinput (ZIO *z);
18char *luaX_lasttoken (void);
19
20
21#endif