lua_checkstack method

int lua_checkstack(
  1. Pointer<lua_State> L,
  2. int n
)

Implementation

int lua_checkstack(ffi.Pointer<lua_State> L, int n) {
  return _lua_checkstack(L, n);
}