shithub: neatmkfn

ref: e18df3808d68cb568b7d9933d541e1e9a57ec0b9
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);