"setglobal" and "getglobal" moved to inout.c, as it concentrates pre-defined

library.
new function "assert".
This commit is contained in:
Roberto Ierusalimschy
1996-01-26 12:05:28 -02:00
parent 8dae4657a1
commit d845963349
2 changed files with 35 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: inout.h,v 1.10 1995/10/17 11:58:41 roberto Exp roberto $
** $Id: inout.h,v 1.11 1996/01/22 17:40:00 roberto Exp roberto $
*/
@@ -14,7 +14,7 @@ extern Bool lua_debug;
extern Word lua_debugline;
extern char *lua_parsedfile;
char *lua_openfile (char *fn);
int lua_openfile (char *fn);
void lua_closefile (void);
void lua_openstring (char *s);
void lua_closestring (void);
@@ -26,5 +26,8 @@ void luaI_print (void);
void luaI_type (void);
void lua_obj2number (void);
void luaI_error (void);
void luaI_assert (void);
void luaI_setglobal (void);
void luaI_getglobal (void);
#endif