| 242 | |
| 243 | |
| 244 | LUALIB_API void luaL_setmetatable (lua_State *L, const char *tname) { |
| 245 | luaL_getmetatable(L, tname); |
| 246 | lua_setmetatable(L, -2); |
| 247 | } |
| 248 | |
| 249 | |
| 250 | LUALIB_API void *luaL_testudata (lua_State *L, int ud, const char *tname) { |
nothing calls this directly
no test coverage detected