diff options
Diffstat (limited to 'print.h')
-rw-r--r-- | print.h | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -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 |