aboutsummaryrefslogtreecommitdiff
path: root/sem_check.h
blob: ce7d7fbf9e1f4cb9530d7d29ca0d0b5ee85f5480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef SEMCHECK_H
#define SEMCHECK_H

#include "scope.h"
#include "tree.h"

void check_id(scope*, char*);

node* check_exists(scope*, char*);

int check_ret_type(ptree*);

#endif