inout.h 396 B

123456789101112131415161718192021222324
  1. /*
  2. ** $Id: inout.h,v 1.16 1996/05/28 21:07:32 roberto Exp roberto $
  3. */
  4. #ifndef inout_h
  5. #define inout_h
  6. #include "types.h"
  7. #include <stdio.h>
  8. extern Word lua_linenumber;
  9. extern Word lua_debugline;
  10. extern char *lua_parsedfile;
  11. FILE *lua_openfile (char *fn);
  12. void lua_closefile (void);
  13. void lua_openstring (char *s);
  14. void lua_closestring (void);
  15. void luaI_predefine (void);
  16. #endif