luaL_checkudata
[-0, +0, v]
void *luaL_checkudata (lua_State *L, int arg, const char *tname);
Checks whether the function argument arg
is a userdata of the type tname
(see luaL_newmetatable
) and returns the userdata address (see lua_touserdata
).
Please login to continue.