1 2 3 4 5 6 7 8
#ifndef TYPE_CHECKER_H #define TYPE_CHECKER_H #include "ast.h" void type_check(struct ast* ast); #endif