| 349 | |
| 350 | |
| 351 | LUALIB_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 |
nothing calls this directly
no test coverage detected