aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
Diffstat (limited to 'print.h')
-rw-r--r--print.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/print.h b/print.h
new file mode 100644
index 0000000..c4e3bec
--- /dev/null
+++ b/print.h
@@ -0,0 +1,11 @@
+#ifndef PRINT_H
+#define PRINT_H PRINT_H
+#include<stdio.h>
+#include<lexer.h>
+#include<queue.h>
+
+
+void print_keyword_enum(enum Keyword code);
+void print_token(struct token *token);
+void print_tokens(struct Queue *tokens);
+#endif