From 679cbe58c4e53f0163588a7731154f3afe2d25aa Mon Sep 17 00:00:00 2001 From: Adam Branes Date: Sun, 2 May 2021 17:46:29 +0300 Subject: lexer formed --- print.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 print.h (limited to 'print.h') 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 +#include +#include + + +void print_keyword_enum(enum Keyword code); +void print_token(struct token *token); +void print_tokens(struct Queue *tokens); +#endif -- cgit v1.2.3