| 400 | |
| 401 | |
| 402 | LUALIB_API const char *luaL_checklstring (lua_State *L, int arg, size_t *len) { |
| 403 | const char *s = lua_tolstring(L, arg, len); |
| 404 | if (!s) tag_error(L, arg, LUA_TSTRING); |
| 405 | return s; |
| 406 | } |
| 407 | |
| 408 | |
| 409 | LUALIB_API const char *luaL_optlstring (lua_State *L, int arg, |
no test coverage detected