ref: 70246f96c1b3c628b758e6d6939e0a7c9a71d481
dir: /src/htable.h/
#pragma once
#define HT_N_INLINE 32
typedef struct {
void **table;
int size;
// this is to skip over non-items in for-each
// FIXME(sigrid): in a multithreaded environment this isn't enough
int i;
void *_space[HT_N_INLINE];
}fl_aligned(8) htable_t;
// define this to be an invalid key/value
#define HT_NOTFOUND ((void*)1)
// initialize and free
htable_t *htable_new(htable_t *h, int size);
void htable_free(htable_t *h);
// clear and (possibly) change size
void htable_reset(htable_t *h, int sz);