"openfile" now returns the file

This commit is contained in:
Roberto Ierusalimschy
1996-03-15 10:13:13 -03:00
parent 3e1f731826
commit e701a86385
2 changed files with 10 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
/*
** $Id: inout.h,v 1.12 1996/01/26 14:05:28 roberto Exp roberto $
** $Id: inout.h,v 1.13 1996/02/07 14:13:47 roberto Exp roberto $
*/
@@ -7,13 +7,14 @@
#define inout_h
#include "types.h"
#include "stdio.h"
extern Word lua_linenumber;
extern Word lua_debugline;
extern char *lua_parsedfile;
int lua_openfile (char *fn);
FILE *lua_openfile (char *fn);
void lua_closefile (void);
void lua_openstring (char *s);
void lua_closestring (void);