** Frees a table. */
| 820 | ** Frees a table. |
| 821 | */ |
| 822 | void luaH_free (lua_State *L, Table *t) { |
| 823 | freehash(L, t); |
| 824 | resizearray(L, t, t->asize, 0); |
| 825 | luaM_free(L, t); |
| 826 | } |
| 827 | |
| 828 | |
| 829 | static Node *getfreepos (Table *t) { |
no test coverage detected