blob: 0da2cc9d67c91d68d44d12ae5f5f73e7c35ca1e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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*);
#endif
|