#ifndef HASHMAP_H #define HASHMAP_H #include #include #include typedef struct { GroundValue value; char* key; UT_hash_handle hh; } HashmapItem; GroundValue createHashmapStruct(); #endif