skopy/lib/include/compiler.h

20 lines
331 B
C
Raw Normal View History

2024-03-31 21:10:56 +00:00
#ifndef SK_COMPILER_H
#define SK_COMPILER_H
#include "commons.h"
#include "prog.h"
struct compiler
{
};
void compiler_init(struct compiler* self);
void compiler_free(struct compiler* self);
void compiler_compile(struct compiler* self,
struct node* node,
struct prog* prog);
#endif