aboutsummaryrefslogtreecommitdiff
path: root/pc.h
diff options
context:
space:
mode:
authorTucker Evans <tuckerevans24@gmail.com>2019-09-05 10:50:02 -0400
committerTucker Evans <tuckerevans24@gmail.com>2019-09-05 10:50:02 -0400
commitd8a7a9b0ed653ec8061896efc0c8e11b5df6b166 (patch)
tree8fe8cb78ee8b0a99a20e5685a0518d62703fb9b5 /pc.h
parent30a16a2fdfd527e89a83f49f53cb448aafcb4e9a (diff)
Add counting of function arguments
Diffstat (limited to 'pc.h')
-rw-r--r--pc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/pc.h b/pc.h
index e13c481..ea49612 100644
--- a/pc.h
+++ b/pc.h
@@ -2,6 +2,7 @@
#define PC_H
#include "y.tab.h"
+#include "tree.h"
char* pretty_type(int);
@@ -10,4 +11,6 @@ void debug_print(int, union YYSTYPE*);
int yyerror(char*);
#endif
+int count_args(ptree*);
+
#define DEBUG