| 406 | |
| 407 | |
| 408 | LUALIB_API const char *luaL_checklstring (lua_State *L, int arg, size_t *len) { |
| 409 | const char *s = lua_tolstring(L, arg, len); |
| 410 | if (l_unlikely(!s)) tag_error(L, arg, LUA_TSTRING); |
| 411 | return s; |
| 412 | } |
| 413 | |
| 414 | |
| 415 | LUALIB_API const char *luaL_optlstring (lua_State *L, int arg, |
no test coverage detected