| 10350 | |
| 10351 | |
| 10352 | LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *mes) { |
| 10353 | if (!lua_checkstack(L, space)) |
| 10354 | luaL_error(L, "stack overflow (%s)", mes); |
| 10355 | } |
| 10356 | |
| 10357 | |
| 10358 | LUALIB_API void luaL_checktype (lua_State *L, int narg, int t) { |
no test coverage detected