Imported from ../lua-1.1.tar.gz.
[lua.git] / src / inout.h
blobca5920ca32366c3bf8f2d89a9b2835232fcba331
1 /*
2 ** $Id: inout.h,v 1.1 1993/12/17 18:41:19 celes Exp $
3 */
6 #ifndef inout_h
7 #define inout_h
9 extern int lua_linenumber;
10 extern int lua_debug;
11 extern int lua_debugline;
13 int lua_openfile (char *fn);
14 void lua_closefile (void);
15 int lua_openstring (char *s);
16 void lua_closestring (void);
17 int lua_pushfunction (int file, int function);
18 void lua_popfunction (void);
19 void lua_reportbug (char *s);
21 #endif