inout.h 405 B

123456789101112131415161718192021222324
  1. /*
  2. ** inout.h
  3. **
  4. ** Waldemar Celes Filho
  5. ** TeCGraf - PUC-Rio
  6. ** 11 May 93
  7. */
  8. #ifndef inout_h
  9. #define inout_h
  10. extern int lua_linenumber;
  11. extern int lua_debug;
  12. extern int lua_debugline;
  13. int lua_openfile (char *fn);
  14. void lua_closefile (void);
  15. int lua_openstring (char *s);
  16. int lua_pushfunction (int file, int function);
  17. void lua_popfunction (void);
  18. void lua_reportbug (char *s);
  19. #endif