| 10375 | |
| 10376 | |
| 10377 | LUALIB_API const char *luaL_optlstring (lua_State *L, int narg, |
| 10378 | const char *def, size_t *len) { |
| 10379 | if (lua_isnoneornil(L, narg)) { |
| 10380 | if (len) |
| 10381 | *len = (def ? strlen(def) : 0); |
| 10382 | return def; |
| 10383 | } |
| 10384 | else return luaL_checklstring(L, narg, len); |
| 10385 | } |
| 10386 | |
| 10387 | |
| 10388 | LUALIB_API lua_Number luaL_checknumber (lua_State *L, int narg) { |
no test coverage detected