Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

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