lgc.h 303 B

12345678910111213141516171819
  1. /*
  2. ** $Id: lgc.h,v 1.8 2000/10/02 14:47:43 roberto Exp roberto $
  3. ** Garbage Collector
  4. ** See Copyright Notice in lua.h
  5. */
  6. #ifndef lgc_h
  7. #define lgc_h
  8. #include "lobject.h"
  9. void luaC_collect (lua_State *L, int all);
  10. void luaC_collectgarbage (lua_State *L);
  11. void luaC_checkGC (lua_State *L);
  12. #endif