Imported from ../lua-1.0.tar.gz.
[lua.git] / inout.h
blob5a72261c701663a846a80777b2448992c70f7952
1 /*
2 ** inout.h
3 **
4 ** Waldemar Celes Filho
5 ** TeCGraf - PUC-Rio
6 ** 11 May 93
7 */
10 #ifndef inout_h
11 #define inout_h
13 extern int lua_linenumber;
14 extern int lua_debug;
15 extern int lua_debugline;
17 int lua_openfile (char *fn);
18 void lua_closefile (void);
19 int lua_openstring (char *s);
20 int lua_pushfunction (int file, int function);
21 void lua_popfunction (void);
22 void lua_reportbug (char *s);
24 #endif