| 309 | |
| 310 | |
| 311 | LUALIB_API void luaL_checkany (lua_State *L, int narg) { |
| 312 | if (lua_type(L, narg) == LUA_TNONE) |
| 313 | luaL_argerror(L, narg, "value expected"); |
| 314 | } |
| 315 | |
| 316 | |
| 317 | LUALIB_API const char *luaL_checklstring (lua_State *L, int narg, size_t *len) { |
no test coverage detected