diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-01-26 12:05:28 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-01-26 12:05:28 -0200 |
commit | d845963349dbf5956cb527f3416af0bd1894d8f7 (patch) | |
tree | c4bb00b65ffdc09a4ba98f00806fdcf291c91812 /inout.h | |
parent | 8dae4657a120a0f01fa599014a55b5d56e846998 (diff) | |
download | lua-d845963349dbf5956cb527f3416af0bd1894d8f7.tar.gz lua-d845963349dbf5956cb527f3416af0bd1894d8f7.tar.bz2 lua-d845963349dbf5956cb527f3416af0bd1894d8f7.zip |
"setglobal" and "getglobal" moved to inout.c, as it concentrates pre-defined
library.
new function "assert".
Diffstat (limited to 'inout.h')
-rw-r--r-- | inout.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: inout.h,v 1.10 1995/10/17 11:58:41 roberto Exp roberto $ | 2 | ** $Id: inout.h,v 1.11 1996/01/22 17:40:00 roberto Exp roberto $ |
3 | */ | 3 | */ |
4 | 4 | ||
5 | 5 | ||
@@ -14,7 +14,7 @@ extern Bool lua_debug; | |||
14 | extern Word lua_debugline; | 14 | extern Word lua_debugline; |
15 | extern char *lua_parsedfile; | 15 | extern char *lua_parsedfile; |
16 | 16 | ||
17 | char *lua_openfile (char *fn); | 17 | int lua_openfile (char *fn); |
18 | void lua_closefile (void); | 18 | void lua_closefile (void); |
19 | void lua_openstring (char *s); | 19 | void lua_openstring (char *s); |
20 | void lua_closestring (void); | 20 | void lua_closestring (void); |
@@ -26,5 +26,8 @@ void luaI_print (void); | |||
26 | void luaI_type (void); | 26 | void luaI_type (void); |
27 | void lua_obj2number (void); | 27 | void lua_obj2number (void); |
28 | void luaI_error (void); | 28 | void luaI_error (void); |
29 | void luaI_assert (void); | ||
30 | void luaI_setglobal (void); | ||
31 | void luaI_getglobal (void); | ||
29 | 32 | ||
30 | #endif | 33 | #endif |