aboutsummaryrefslogtreecommitdiff
path: root/inout.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-03 20:34:29 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1994-11-03 20:34:29 -0200
commit31d58e2f0193998d28f1c0587573fdc35da383fd (patch)
treee49c42ea8c3674c8e6d868a54e3dd100fef1e240 /inout.h
parent42ef3f938876088a1c28afd3f7e7b25273f1c976 (diff)
downloadlua-31d58e2f0193998d28f1c0587573fdc35da383fd.tar.gz
lua-31d58e2f0193998d28f1c0587573fdc35da383fd.tar.bz2
lua-31d58e2f0193998d28f1c0587573fdc35da383fd.zip
more functions from opcode.c
'open_file' and 'open_string' return an error message lua_type renamed to luaI_type (I for Internal, as this function is not exported outside lua)
Diffstat (limited to 'inout.h')
-rw-r--r--inout.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/inout.h b/inout.h
index f8cc0e93..0714f1a4 100644
--- a/inout.h
+++ b/inout.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: inout.h,v 1.2 1994/10/11 14:38:17 celes Exp roberto $ 2** $Id: inout.h,v 1.3 1994/11/02 20:29:39 roberto Exp roberto $
3*/ 3*/
4 4
5 5
@@ -10,9 +10,9 @@ extern int lua_linenumber;
10extern int lua_debug; 10extern int lua_debug;
11extern int lua_debugline; 11extern int lua_debugline;
12 12
13int lua_openfile (char *fn); 13char *lua_openfile (char *fn);
14void lua_closefile (void); 14void lua_closefile (void);
15int lua_openstring (char *s); 15char *lua_openstring (char *s);
16void lua_closestring (void); 16void lua_closestring (void);
17int lua_pushfunction (char *file, int function); 17int lua_pushfunction (char *file, int function);
18void lua_popfunction (void); 18void lua_popfunction (void);
@@ -21,6 +21,7 @@ void lua_reportbug (char *s);
21void lua_internaldofile (void); 21void lua_internaldofile (void);
22void lua_internaldostring (void); 22void lua_internaldostring (void);
23void lua_print (void); 23void lua_print (void);
24void lua_type (void); 24void luaI_type (void);
25void lua_obj2number (void);
25 26
26#endif 27#endif