| 750 | |
| 751 | |
| 752 | LUA_API int lua_rawgetp (lua_State *L, int idx, const void *p) { |
| 753 | Table *t; |
| 754 | TValue k; |
| 755 | lua_lock(L); |
| 756 | t = gettable(L, idx); |
| 757 | setpvalue(&k, cast_voidp(p)); |
| 758 | return finishrawget(L, luaH_get(t, &k)); |
| 759 | } |
| 760 | |
| 761 | |
| 762 | LUA_API void lua_createtable (lua_State *L, int narray, int nrec) { |
nothing calls this directly
no test coverage detected