| 10356 | |
| 10357 | |
| 10358 | LUALIB_API void luaL_checktype (lua_State *L, int narg, int t) { |
| 10359 | if (lua_type(L, narg) != t) |
| 10360 | tag_error(L, narg, t); |
| 10361 | } |
| 10362 | |
| 10363 | |
| 10364 | LUALIB_API void luaL_checkany (lua_State *L, int narg) { |
no test coverage detected