| 2697 | |
| 2698 | |
| 2699 | LUA_API int lua_cpcall (lua_State *L, lua_CFunction func, void *ud) { |
| 2700 | struct CCallS c; |
| 2701 | int status; |
| 2702 | lua_lock(L); |
| 2703 | c.func = func; |
| 2704 | c.ud = ud; |
| 2705 | status = luaD_pcall(L, f_Ccall, &c, savestack(L, L->top), 0); |
| 2706 | lua_unlock(L); |
| 2707 | return status; |
| 2708 | } |
| 2709 | |
| 2710 | |
| 2711 | LUA_API int lua_load (lua_State *L, lua_Reader reader, void *data, |
nothing calls this directly
no test coverage detected