aboutsummaryrefslogtreecommitdiff
path: root/sem_check.h
blob: 8f5394ae74023c06ab1ca09d553cfda57a5f6481 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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*);

void check_call(ptree*);

void check_func_return(ptree*, char*);
#endif