diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-04 13:27:53 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1997-11-04 13:27:53 -0200 |
commit | 45cad43c3fedb13a5e424429fe94dc78ba01a118 (patch) | |
tree | e5dae021aa66accc06b6941add38bf2d495c6440 /llex.h | |
parent | dad5a01fb07e8a654f195ec3a9ca271cd5ee32e3 (diff) | |
download | lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.tar.gz lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.tar.bz2 lua-45cad43c3fedb13a5e424429fe94dc78ba01a118.zip |
"lua_open": now lua has an explicit open operation.
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: $ | 2 | ** $Id: llex.h,v 1.1 1997/09/16 19:25:59 roberto Exp roberto $ |
3 | ** Lexical Analizer | 3 | ** Lexical Analizer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -13,6 +13,8 @@ | |||
13 | 13 | ||
14 | extern int luaX_linenumber; | 14 | extern int luaX_linenumber; |
15 | 15 | ||
16 | |||
17 | void luaX_init (void); | ||
16 | int luaY_lex (void); | 18 | int luaY_lex (void); |
17 | void luaX_setinput (ZIO *z); | 19 | void luaX_setinput (ZIO *z); |
18 | char *luaX_lasttoken (void); | 20 | char *luaX_lasttoken (void); |