| 394 | |
| 395 | |
| 396 | LUALIB_API void luaL_checkany (lua_State *L, int arg) { |
| 397 | if (lua_type(L, arg) == LUA_TNONE) |
| 398 | luaL_argerror(L, arg, "value expected"); |
| 399 | } |
| 400 | |
| 401 | |
| 402 | LUALIB_API const char *luaL_checklstring (lua_State *L, int arg, size_t *len) { |
no test coverage detected