From 73a7027a9d58c6ca71817170bff23ac71edac9d8 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 28 Mar 2020 12:10:13 +0100 Subject: Cleaning env and path, Removed state struct --- include/ms_parse.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'include/ms_parse.h') diff --git a/include/ms_parse.h b/include/ms_parse.h index ef82146..5351680 100644 --- a/include/ms_parse.h +++ b/include/ms_parse.h @@ -65,20 +65,20 @@ typedef enum ** foo bar */ -typedef struct t_ast { - t_tag tag; - char* contents; - int children_num; - struct t_ast** children; -} t_ast; +typedef struct s_ast +{ + t_tag tag; + char* contents; + int children_num; + struct s_ast** children; +} t_ast; -char **ms_lexer(char *input); +char **ms_lexer(char *input); /* ** parse.c */ - -void *ms_parse(char *input); +t_ast *ms_parse(char *input); #endif -- cgit