Native functions are working

This commit is contained in:
2022-08-27 15:39:42 +01:00
parent e523a6f60a
commit ec91bac8a5
12 changed files with 492 additions and 34 deletions

View File

@@ -13,6 +13,7 @@ typedef struct _entry {
typedef struct LiteralDictionary {
_entry* entries;
int capacity;
int contains; //count + tombstones
int count;
} LiteralDictionary;