Files
cground/libs/collections/hashmap.h

16 lines
239 B
C

#ifndef HASHMAP_H
#define HASHMAP_H
#include <groundext.h>
#include <groundvm.h>
#include <uthash.h>
typedef struct {
GroundValue value;
char* key;
UT_hash_handle hh;
} HashmapItem;
GroundValue createHashmapStruct();
#endif