| 10362 | |
| 10363 | |
| 10364 | LUALIB_API void luaL_checkany (lua_State *L, int narg) { |
| 10365 | if (lua_type(L, narg) == LUA_TNONE) |
| 10366 | luaL_argerror(L, narg, "value expected"); |
| 10367 | } |
| 10368 | |
| 10369 | |
| 10370 | LUALIB_API const char *luaL_checklstring (lua_State *L, int narg, size_t *len) { |
no test coverage detected