-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast_displayer.h
36 lines (27 loc) · 1.13 KB
/
ast_displayer.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
* ast_displayer.h
*
* Created on: 16/06/2020
* Author: pirx
*/
#ifndef _ast_displayer_H_
#define _ast_displayer_H_
/*******************************************************************************
* Includes
******************************************************************************/
#include "ast.h"
/*******************************************************************************
* Macros
******************************************************************************/
/*******************************************************************************
* Types
******************************************************************************/
/*******************************************************************************
* Variables
******************************************************************************/
/*******************************************************************************
* Prototypes
******************************************************************************/
void AST_DISPLAY_Text(AST_NODE *cur, int space);
void AST_DISPLAY_DotF(AST_NODE *root, char *namefile);
#endif /* _ast_displayer_H_ */