seahag/test/init_hmap.c

13 lines
200 B
C
Raw Normal View History

2023-08-14 19:09:18 -04:00
#include "haggis_private.h"
#include <assert.h>
#include <sys/types.h>
int main() {
hmap *map;
map = hmap_init(sizeof(ino_t));
assert(map != NULL);
hmap_deinit(map);
return 0;
}