lua_pushboolean method

void lua_pushboolean(
  1. Pointer<lua_State> L,
  2. int b
)

Implementation

void lua_pushboolean(
  ffi.Pointer<lua_State> L,
  int b,
) {
  return _lua_pushboolean(
    L,
    b,
  );
}