MCPcopy Create free account
hub / github.com/F-Stack/f-stack / luaL_checkudata

Function luaL_checkudata

freebsd/contrib/openzfs/module/lua/lauxlib.c:265–269  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

263
264
265LUALIB_API void *luaL_checkudata (lua_State *L, int ud, const char *tname) {
266 void *p = luaL_testudata(L, ud, tname);
267 if (p == NULL) typeerror(L, ud, tname);
268 return p;
269}
270
271/* }====================================================== */
272

Callers

nothing calls this directly

Calls 2

luaL_testudataFunction · 0.85
typeerrorFunction · 0.85

Tested by

no test coverage detected