| 413 | |
| 414 | |
| 415 | LUALIB_API const char *luaL_optlstring (lua_State *L, int arg, |
| 416 | const char *def, size_t *len) { |
| 417 | if (lua_isnoneornil(L, arg)) { |
| 418 | if (len) |
| 419 | *len = (def ? strlen(def) : 0); |
| 420 | return def; |
| 421 | } |
| 422 | else return luaL_checklstring(L, arg, len); |
| 423 | } |
| 424 | |
| 425 | |
| 426 | LUALIB_API lua_Number luaL_checknumber (lua_State *L, int arg) { |
no test coverage detected