aboutsummaryrefslogtreecommitdiff
path: root/pc.h
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-09-12 20:00:18 -0400
committerTucker Evans <tuckerevans24@gmail.com>2019-09-12 20:00:18 -0400
commit7698efc6e34037c3b6ba2968e77c4e33df4b484e (patch)
treeb4e5e240c15a9942e6aacd0d9757bc7ce5db0729 /pc.h
parentbb9070ca0d79d2314c25b83e4496f43488446734 (diff)
parentd8f19b2f532d0a0d7131c1141ca481fa2d08b946 (diff)
Merge branch 'master' into mem-management
Diffstat (limited to 'pc.h')
-rw-r--r--pc.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/pc.h b/pc.h
index e13c481..79174f4 100644
--- a/pc.h
+++ b/pc.h
@@ -2,12 +2,17 @@
#define PC_H
#include "y.tab.h"
+#include "tree.h"
char* pretty_type(int);
void debug_print(int, union YYSTYPE*);
int yyerror(char*);
+
+int count_args(ptree*);
+int set_func_types(ptree*, int*, int);
+int get_call_types(ptree*, int*, int);
#endif
#define DEBUG