diff options
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 | ||