| 170 | |
| 171 | |
| 172 | LUALIB_API void luaL_checkstack (lua_State *L, int space, const char *mes) { |
| 173 | if (!lua_checkstack(L, space)) |
| 174 | luaL_error(L, "stack overflow (%s)", mes); |
| 175 | } |
| 176 | |
| 177 | |
| 178 | LUALIB_API void luaL_checktype (lua_State *L, int narg, int t) { |
no test coverage detected