| 182 | |
| 183 | |
| 184 | LUALIB_API void luaL_checkany (lua_State *L, int narg) { |
| 185 | if (lua_type(L, narg) == LUA_TNONE) |
| 186 | luaL_argerror(L, narg, "value expected"); |
| 187 | } |
| 188 | |
| 189 | |
| 190 | LUALIB_API const char *luaL_checklstring (lua_State *L, int narg, size_t *len) { |
no test coverage detected