added hashmaps and fixed some small issues with lists

This commit is contained in:
2026-04-11 19:47:12 +10:00
parent a1ad1fe139
commit 8a3093c30f
4 changed files with 184 additions and 31 deletions

View File

@@ -0,0 +1,16 @@
#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