aboutsummaryrefslogtreecommitdiffstats
path: root/print.h
blob: c4e3becb51ac778c2bfbdf644daad93dba95141c (plain)
1
2
3
4
5
6
7
8
9
10
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