aboutsummaryrefslogtreecommitdiff
path: root/interpreter/print.h
blob: 047a7f7791006a3ec00b912786599556bb959418 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _H_PRINT
#define _H_PRINT

#include "syntax.h"
#include "graphs.h"

#include <stdio.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*);

void print_node(struct node*);

#ifdef _FUSPEL_DEBUG
void print_node_to_file(struct node*, FILE*);
#endif

#endif