updated fileio and collections libs

rewrote fileio lib to use structs and methods. i also updated collections lib to fix bugs and be more consistent
This commit is contained in:
2026-04-13 06:34:25 +10:00
parent aa0c71a47b
commit 9e6a0d5a83
3 changed files with 293 additions and 84 deletions

View File

@@ -3,9 +3,11 @@
#include <groundext.h>
#include <groundvm.h>
#include <stddef.h>
extern const uint8_t STARTING_ELEMENTS;
GroundValue createList(int64_t initialCapacity);
void initLists(GroundScope* scope);
#endif