| 3097 | } |
| 3098 | |
| 3099 | COMPAT53_API int lua_rawgetp(lua_State* L, int i, const void* p) { |
| 3100 | int abs_i = lua_absindex(L, i); |
| 3101 | lua_pushlightuserdata(L, (void*)p); |
| 3102 | lua_rawget(L, abs_i); |
| 3103 | return lua_type(L, -1); |
| 3104 | } |
| 3105 | |
| 3106 | COMPAT53_API void lua_rawsetp(lua_State* L, int i, const void* p) { |
| 3107 | int abs_i = lua_absindex(L, i); |
no test coverage detected