15 lines
150 B
C
15 lines
150 B
C
|
#ifndef VM_INCLUDED
|
||
|
#define VM_INLCUDED
|
||
|
|
||
|
#include "chunk.h"
|
||
|
|
||
|
|
||
|
typedef struct {
|
||
|
Chunk *chunk;
|
||
|
} VM;
|
||
|
|
||
|
void initVM(void);
|
||
|
void freeVM(void);
|
||
|
|
||
|
#endif
|