| 1010 | |
| 1011 | |
| 1012 | LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) { |
| 1013 | TValue k; |
| 1014 | setpvalue(&k, cast_voidp(p)); |
| 1015 | aux_rawset(L, idx, &k, 1); |
| 1016 | } |
| 1017 | |
| 1018 | |
| 1019 | LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) { |
nothing calls this directly
no test coverage detected