map icon indicating copy to clipboard operation
map copied to clipboard

A type-safe hash map implementation for C

Results 9 map issues
Sort by recently updated
recently updated
newest added

It works only with power of 2, otherwise nothing is done.

Hello, I learned your map code,After applying for space on the heap, calling map ﹣ deinit ﹣ will not release the empty space applied by the user. It is not...

```c map_init(&m); map_deinit(&m); // crash ``` ![image](https://user-images.githubusercontent.com/4510984/63239271-08738600-c27d-11e9-8984-1d9b2726c0fe.png)

![image](https://user-images.githubusercontent.com/4510984/63235742-626c4f80-c26d-11e9-94d7-fd6bc54dbd7a.png) ![image](https://user-images.githubusercontent.com/4510984/63235744-67310380-c26d-11e9-8854-e30ee69dbdb1.png)

Hello, you library look very nice at first glance. However in order to check for usability, i would have to write a main and test your features. Maybe you could...

Hi, This is very strong code in practical.But i want to understand code through,could anyone give me some links refer to the code, Thanks in advance.

1. Build Compatible with C++(-Wall -Werror) windows _MSC_VER >= 1600(VS2010 C++11 add decltype) clang(support but not test) gcc(tested gcc>=4.0.0) 2. Add test code