diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-09-16 16:25:59 -0300 |
commit | 60cc473bcfce079d1525fcffcfdfbeb66e35afa2 (patch) | |
tree | 368fec478cec8637af6346e69ec66722ab38a9cf /llex.h | |
parent | 43a2ee6ea1b7825c1892de614cb38a3fe487a19f (diff) | |
download | lua-60cc473bcfce079d1525fcffcfdfbeb66e35afa2.tar.gz lua-60cc473bcfce079d1525fcffcfdfbeb66e35afa2.tar.bz2 lua-60cc473bcfce079d1525fcffcfdfbeb66e35afa2.zip |
Lexical Analizer
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 21 |
1 files changed, 21 insertions, 0 deletions
@@ -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 | |||
14 | extern int luaX_linenumber; | ||
15 | |||
16 | int luaY_lex (void); | ||
17 | void luaX_setinput (ZIO *z); | ||
18 | char *luaX_lasttoken (void); | ||
19 | |||
20 | |||
21 | #endif | ||