mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-19 16:54:08 +10:00
Wrote the interpreter
This commit is contained in:
@@ -9,8 +9,10 @@ typedef struct LiteralArray {
|
||||
} LiteralArray;
|
||||
|
||||
void initLiteralArray(LiteralArray* array);
|
||||
int writeLiteralArray(LiteralArray* array, Literal literal);
|
||||
int pushLiteralArray(LiteralArray* array, Literal literal);
|
||||
Literal popLiteralArray(LiteralArray* array);
|
||||
void freeLiteralArray(LiteralArray* array);
|
||||
|
||||
int findLiteralIndex(LiteralArray* array, Literal literal);
|
||||
|
||||
void printLiteralArray(LiteralArray* array, const char* delim);
|
||||
Reference in New Issue
Block a user