| 912 | |
| 913 | |
| 914 | LUA_API void lua_rawsetp (lua_State *L, int idx, const void *p) { |
| 915 | TValue k; |
| 916 | setpvalue(&k, cast_voidp(p)); |
| 917 | aux_rawset(L, idx, &k, 1); |
| 918 | } |
| 919 | |
| 920 | |
| 921 | LUA_API void lua_rawseti (lua_State *L, int idx, lua_Integer n) { |
nothing calls this directly
no test coverage detected