summaryrefslogtreecommitdiff
path: root/src/include/print.h
blob: 9dbecbd5b01d699d513e276614f261dd7595a9f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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(ast_t *res);
#endif