summaryrefslogtreecommitdiff
path: root/src/include/print.h
blob: 866f63e3d9611e09d2f959376ff53b42d9f2f46f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PRINT_H
#define PRINT_H
#include "./ast.h"

void print_string(ast_t *str);

void print_int(ast_t *i);

void print_bool(ast_t *b);

void print_float(ast_t *f);

void print_func(ast_t *f);

void print_list(ast_t *f);

void print_symbol(ast_t *s);

void print_pair(ast_t *p);

void print(ast_t *res);
#endif