| 293 | } |
| 294 | |
| 295 | int lua_pcall(lua_State* L, int nargs, int nresults, int errfunc) |
| 296 | { |
| 297 | if (luaVersion > LuaVersion::LUA_51) |
| 298 | { |
| 299 | return e_lua_pcallk(L, nargs, nresults, errfunc, 0, nullptr); |
| 300 | } |
| 301 | return e_lua_pcall(L, nargs, nresults, errfunc); |
| 302 | } |
| 303 | |
| 304 | void luaL_setfuncs(lua_State* L, const luaL_Reg* l, int nup) |
| 305 | { |
no outgoing calls
no test coverage detected