luaL_error method

int luaL_error(
  1. Pointer<lua_State> L,
  2. Pointer<Char> fmt
)

Implementation

int luaL_error(ffi.Pointer<lua_State> L, ffi.Pointer<ffi.Char> fmt) {
  return _luaL_error(L, fmt);
}