| 382 | |
| 383 | |
| 384 | LUALIB_API void luaL_checkany (lua_State *L, int arg) { |
| 385 | if (lua_type(L, arg) == LUA_TNONE) |
| 386 | luaL_argerror(L, arg, "value expected"); |
| 387 | } |
| 388 | |
| 389 | |
| 390 | LUALIB_API const char *luaL_checklstring (lua_State *L, int arg, size_t *len) { |
no test coverage detected