luaL_optstring
[-0, +0, v]
1 2 3 | const char *luaL_optstring (lua_State *L, int arg, const char *d); |
If the function argument arg
is a string, returns this string. If this argument is absent or is nil, returns d
. Otherwise, raises an error.
Please login to continue.