shithub: neatmkfn

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