change how access is done and add built in array (need to optimise the size)

This commit is contained in:
William Bell
2025-09-09 06:24:23 +01:00
parent d46a6dc209
commit fc7cfc7cfb
22 changed files with 732 additions and 639 deletions

View File

@@ -27,7 +27,7 @@ struct hashmap_GC *createHashmap_GC() {
}
void clear_hashmap_GC(struct hashmap_GC *t) {
if (!t->hashmap_count)
if (!t->count)
return;
t->order = 1;
t->count = 0;