inout.h 682 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. ** $Id: inout.h,v 1.14 1996/03/15 13:13:13 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 lua_internaldofile (void);
  16. void lua_internaldostring (void);
  17. void luaI_tostring (void);
  18. void luaI_print (void);
  19. void luaI_type (void);
  20. void lua_obj2number (void);
  21. void luaI_error (void);
  22. void luaI_assert (void);
  23. void luaI_setglobal (void);
  24. void luaI_getglobal (void);
  25. #endif