inout.h 562 B

1234567891011121314151617181920212223242526
  1. /*
  2. ** $Id: inout.h,v 1.2 1994/10/11 14:38:17 celes 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. int lua_openfile (char *fn);
  10. void lua_closefile (void);
  11. int 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 lua_type (void);
  20. #endif