diff options
Diffstat (limited to 'include/ms_parse.h')
| -rw-r--r-- | include/ms_parse.h | 18 |
1 files changed, 9 insertions, 9 deletions
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 |
