clox/include/vm.h

15 lines
150 B
C
Raw Normal View History

2024-09-01 22:43:28 +00:00
#ifndef VM_INCLUDED
#define VM_INLCUDED
#include "chunk.h"
typedef struct {
Chunk *chunk;
} VM;
void initVM(void);
void freeVM(void);
#endif