diff options
| author | nass1pro <nass1pro@gmail.com> | 2020-06-14 09:51:22 +0200 |
|---|---|---|
| committer | nass1pro <nass1pro@gmail.com> | 2020-06-14 09:51:22 +0200 |
| commit | ab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d (patch) | |
| tree | 6c5f54bb627629a745096dc3895c5f4084a9ee68 | |
| parent | 1d455c5b8ba3ecd7fa0b0a5a6718bc6cd7fbd8d9 (diff) | |
| download | minishell-ab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d.tar.gz minishell-ab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d.tar.bz2 minishell-ab1e32c348c649c1c7c8dad5922cfe1c0f11ac5d.zip | |
Change t_ret in ast.h
| -rw-r--r-- | include/ast.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ast.h b/include/ast.h index 8127930..2f3a11d 100644 --- a/include/ast.h +++ b/include/ast.h @@ -58,7 +58,7 @@ typedef struct s_line { struct s_ast *left; struct s_ast *right; - t_sep sep; + e_token_tag sep; } t_line; /* @@ -109,8 +109,8 @@ typedef struct s_ast typedef struct s_ret { - t_bool failed; - t_ast *as; + t_token *unexpected; + t_ast *ast; t_ftlst *rest; } t_ret; |
