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