Hello,
In your example in your README, you have the following line:
HashMap map = emhashmap_create(64);
emhashmap_create(int) is not a function
It should read:
HashMap map;
int capacity = 64;
float load_factor = 10;
emhashmap_initialize(&map, capacity, load_factor);