Hi Everyone,
I was wondering how I can implement a hashmap function in C. I have to define a struct:
struct hashmap;
typedef struct hashmap hashmap;
This has to be a multimap so that a key can point to different values.
If also need to initialise this hashmap like so:
hashmap* hm_initialize();
Any help is greatly appreciated!