2
0

inout.h 651 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. ** $Id: inout.h,v 1.6 1994/11/21 21:41:09 roberto Stab roberto $
  3. */
  4. #ifndef inout_h
  5. #define inout_h
  6. #include "types.h"
  7. extern Word lua_linenumber;
  8. extern Bool lua_debug;
  9. extern Word lua_debugline;
  10. char *lua_openfile (char *fn);
  11. void lua_closefile (void);
  12. char *lua_openstring (char *s);
  13. void lua_closestring (void);
  14. void lua_pushfunction (char *file, Word function);
  15. void lua_popfunction (void);
  16. void lua_reportbug (char *s);
  17. void lua_internaldofile (void);
  18. void lua_internaldostring (void);
  19. void lua_print (void);
  20. void luaI_type (void);
  21. void lua_obj2number (void);
  22. void luaI_error (void);
  23. #endif