inout.h 565 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. ** $Id: inout.h,v 1.9 1995/05/16 17:23:58 roberto Exp 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. extern char *lua_parsedfile;
  11. char *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 lua_print (void);
  18. void luaI_type (void);
  19. void lua_obj2number (void);
  20. void luaI_error (void);
  21. #endif