| 343 | |
| 344 | |
| 345 | LUALIB_API void *luaL_checkudata (lua_State *L, int ud, const char *tname) { |
| 346 | void *p = luaL_testudata(L, ud, tname); |
| 347 | luaL_argexpected(L, p != NULL, ud, tname); |
| 348 | return p; |
| 349 | } |
| 350 | |
| 351 | /* }====================================================== */ |
| 352 |
nothing calls this directly
no test coverage detected