shithub: neatmkfn

ref: 2f915be0ca122169285b9e6f9060675d645658d4
dir: /tab.h/

View raw version
struct tab *tab_alloc(int sz);
void tab_free(struct tab *tab);
void tab_put(struct tab *tab, char *k, void *v);
void *tab_get(struct tab *tab, char *k);