#pragma once #include "ast.h" typedef struct InterState InterState; InterState* inter_make(void); void inter_destroy(InterState *is); void inter_runcode(InterState *is,AST *ast); //updates symbol id's