shithub: sl

ref: 5acf222abf7bd65e3ccfe19b30fedd361d92cd7c
dir: /src/htable.h/

View raw version
#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);