inout.h 373 B

123456789101112131415161718192021
  1. /*
  2. ** $Id: $
  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 (int file, int function);
  14. void lua_popfunction (void);
  15. void lua_reportbug (char *s);
  16. #endif