| 835 | |
| 836 | |
| 837 | LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) { |
| 838 | Table *t; |
| 839 | TValue k; |
| 840 | lua_lock(L); |
| 841 | t = gettable(L, idx); |
| 842 | setpvalue(&k, cast_voidp(p)); |
| 843 | return finishrawget(L, luaH_get(t, &k, s2v(L->top.p))); |
| 844 | } |
| 845 | |
| 846 | |
| 847 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
nothing calls this directly
no test coverage detected