| 175 | |
| 176 | |
| 177 | LUALIB_API void luaL_checkany (lua_State *L, int narg) { |
| 178 | if (lua_type(L, narg) == LUA_TNONE) |
| 179 | luaL_argerror(L, narg, "value expected"); |
| 180 | } |
| 181 | |
| 182 | |
| 183 | LUALIB_API const char *luaL_checklstring (lua_State *L, int narg, size_t *len) { |
no test coverage detected