MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / luaL_checkudata

Function luaL_checkudata

third-party/lua-5.5.0/src/lauxlib.c:351–355  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

349
350
351LUALIB_API void *luaL_checkudata (lua_State *L, int ud, const char *tname) {
352 void *p = luaL_testudata(L, ud, tname);
353 luaL_argexpected(L, p != NULL, ud, tname);
354 return p;
355}
356
357/* }====================================================== */
358

Callers

nothing calls this directly

Calls 1

luaL_testudataFunction · 0.70

Tested by

no test coverage detected