| 150 | |
| 151 | |
| 152 | LUALIB_API void luaL_checkany (lua_State *L, int narg) { |
| 153 | if (lua_type(L, narg) == LUA_TNONE) |
| 154 | luaL_argerror(L, narg, "value expected"); |
| 155 | } |
| 156 | |
| 157 | |
| 158 | LUALIB_API const char *luaL_checklstring (lua_State *L, int narg, size_t *len) { |
no test coverage detected