#ifndef COMPILER_H
#define COMPILER_H

#include <stdbool.h>

unsigned char* cCompile(int* codeLength);
const char* cGetError();

#endif