forked from ground/ground
rewrote fileio lib to use structs and methods. i also updated collections lib to fix bugs and be more consistent
13 lines
230 B
C
13 lines
230 B
C
#ifndef LIST_H
|
|
#define LIST_H
|
|
|
|
#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 |