summaryrefslogtreecommitdiff
path: root/memory.h
blob: 0b6f8e537ee4886a3d5c283518aadcd40e8622d3 (plain)
1
2
3
4
5
6
7
8
9
#pragma once
#include "token.h"

typedef struct {
	char *strings;
} Memory;

int memory_create(Memory *memory, Token *list);
void memory_destroy(Memory *memory);