Files

13 lines
230 B
C
Raw Permalink Normal View History

2026-04-11 16:06:34 +10:00
#ifndef LIST_H
#define LIST_H
#include <groundext.h>
#include <groundvm.h>
#include <stddef.h>
2026-04-11 16:06:34 +10:00
extern const uint8_t STARTING_ELEMENTS;
GroundValue createList(int64_t initialCapacity);
void initLists(GroundScope* scope);
2026-04-11 16:06:34 +10:00
#endif