lua_gettop method

int lua_gettop(
  1. Pointer<lua_State> L
)

Implementation

int lua_gettop(ffi.Pointer<lua_State> L) {
  return _lua_gettop(L);
}