diff options
author | Lua Team <team@lua.org> | 1995-02-07 12:00:00 +0000 |
---|---|---|
committer | repogen <> | 1995-02-07 12:00:00 +0000 |
commit | a8b6ba0954edb9e0e669e1f451b9a8f145ce5166 (patch) | |
tree | 35e9e9999968c4f13a25a5f647203456f044274a /src/inout.h | |
parent | 944fc7d7d95575f2b8023c1f3d4ac19e1369fc76 (diff) | |
download | lua-github-2.1.tar.gz |
Lua 2.12.1
Diffstat (limited to 'src/inout.h')
-rw-r--r-- | src/inout.h | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/src/inout.h b/src/inout.h index ca5920ca..22093020 100644 --- a/src/inout.h +++ b/src/inout.h @@ -1,21 +1,30 @@ /* -** $Id: inout.h,v 1.1 1993/12/17 18:41:19 celes Exp $ +** $Id: inout.h,v 1.7 1994/12/20 21:20:36 roberto Exp $ */ #ifndef inout_h #define inout_h -extern int lua_linenumber; -extern int lua_debug; -extern int lua_debugline; +#include "types.h" -int lua_openfile (char *fn); +extern Word lua_linenumber; +extern Bool lua_debug; +extern Word lua_debugline; + +char *lua_openfile (char *fn); void lua_closefile (void); -int lua_openstring (char *s); +char *lua_openstring (char *s); void lua_closestring (void); -int lua_pushfunction (int file, int function); +void lua_pushfunction (char *file, Word function); void lua_popfunction (void); void lua_reportbug (char *s); +void lua_internaldofile (void); +void lua_internaldostring (void); +void lua_print (void); +void luaI_type (void); +void lua_obj2number (void); +void luaI_error (void); + #endif |