aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
diff options
context:
space:
mode:
authorAdam Branes <adam@adam>2021-05-02 17:46:29 +0300
committerGalin Simeonov <gts@volconst.com>2021-07-15 18:00:07 +0300
commit679cbe58c4e53f0163588a7731154f3afe2d25aa (patch)
treea2dbc2317a3f107899d60f5e68c8d6cf8d27e146 /print.h
parenta3e36c1918e63761dfc4d2221cca3636b98e93aa (diff)
downloadMEGATRON-679cbe58c4e53f0163588a7731154f3afe2d25aa.tar.gz
lexer formed
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