1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00
Files
lua-lua/inout.h
T
1997-06-16 13:50:22 -03:00

25 lines
401 B
C

/*
** $Id: inout.h,v 1.17 1997/02/26 17:38:41 roberto Unstable roberto $
*/
#ifndef inout_h
#define inout_h
#include "types.h"
#include <stdio.h>
extern Word lua_linenumber;
extern Word lua_debugline;
extern char *lua_parsedfile;
FILE *lua_openfile (char *fn);
void lua_closefile (void);
void lua_openstring (char *s);
void lua_closestring (void);
void luaI_predefine (void);
#endif