inout.h 626 B

12345678910111213141516171819202122232425262728
  1. /*
  2. ** $Id: inout.h,v 1.4 1994/11/03 22:34:29 roberto Exp roberto $
  3. */
  4. #ifndef inout_h
  5. #define inout_h
  6. extern int lua_linenumber;
  7. extern int lua_debug;
  8. extern int lua_debugline;
  9. char *lua_openfile (char *fn);
  10. void lua_closefile (void);
  11. char *lua_openstring (char *s);
  12. void lua_closestring (void);
  13. int lua_pushfunction (char *file, int function);
  14. void lua_popfunction (void);
  15. void lua_reportbug (char *s);
  16. void lua_internaldofile (void);
  17. void lua_internaldostring (void);
  18. void lua_print (void);
  19. void luaI_type (void);
  20. void lua_obj2number (void);
  21. void luaI_error (void);
  22. #endif