aboutsummaryrefslogtreecommitdiff
path: root/interpreter/print.h
blob: 5909087825b58a3790474a7ec21cb948e1ff2a8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _H_PRINT
#define _H_PRINT

#include "syntax.h"

void print_token(token*);
void print_token_list(token_list*);

void print_expression(expression*);
void print_rewrite_rule(rewrite_rule*);
void print_fuspel(fuspel*);

#endif