forked from ground/ground
16 lines
239 B
C
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
|