lua_gc method

int lua_gc(
  1. Pointer<lua_State> L,
  2. int what
)

Implementation

int lua_gc(ffi.Pointer<lua_State> L, int what) {
  return _lua_gc(L, what);
}