| 780 | |
| 781 | |
| 782 | LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) { |
| 783 | Table *t; |
| 784 | TValue k; |
| 785 | lua_lock(L); |
| 786 | t = gettable(L, idx); |
| 787 | setpvalue(&k, cast_voidp(p)); |
| 788 | return finishrawget(L, luaH_get(t, &k, s2v(L->top.p))); |
| 789 | } |
| 790 | |
| 791 | |
| 792 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
nothing calls this directly
no test coverage detected