lua_gethookcount method

int lua_gethookcount(
  1. Pointer<lua_State> L
)

Implementation

int lua_gethookcount(
  ffi.Pointer<lua_State> L,
) {
  return _lua_gethookcount(
    L,
  );
}