| 388 | |
| 389 | |
| 390 | LUALIB_API const char *luaL_checklstring (lua_State *L, int arg, size_t *len) { |
| 391 | const char *s = lua_tolstring(L, arg, len); |
| 392 | if (!s) tag_error(L, arg, LUA_TSTRING); |
| 393 | return s; |
| 394 | } |
| 395 | |
| 396 | |
| 397 | LUALIB_API const char *luaL_optlstring (lua_State *L, int arg, |
no test coverage detected