diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-02-28 16:00:02 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-02-28 16:00:02 +0100 |
| commit | 5dc7a4036025bd7c3f997f08e2d9b14338c0e528 (patch) | |
| tree | db45975de56f58a64bf6370d5a441b9299c6899d /include/ms_parse.h | |
| parent | cc1b57c96cc8c0fdd53e781b54a83bb9c743179a (diff) | |
| download | minishell-5dc7a4036025bd7c3f997f08e2d9b14338c0e528.tar.gz minishell-5dc7a4036025bd7c3f997f08e2d9b14338c0e528.tar.bz2 minishell-5dc7a4036025bd7c3f997f08e2d9b14338c0e528.zip | |
Added eval.c draft
Diffstat (limited to 'include/ms_parse.h')
| -rw-r--r-- | include/ms_parse.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ms_parse.h b/include/ms_parse.h index 043f065..59c9ca8 100644 --- a/include/ms_parse.h +++ b/include/ms_parse.h @@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/28 09:00:00 by cacharle #+# #+# */ -/* Updated: 2020/02/28 12:28:59 by cacharle ### ########.fr */ +/* Updated: 2020/02/28 14:57:58 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -32,15 +32,15 @@ typedef struct { char *name; char **argv; - t_ftlst *redirections; + t_ftlst *redirections; // need to store them in reverse order } t_command; typedef enum { SEPARATOR_SEMICOLON, SEPARATOR_PIPE, - SEPARATOR_AND, - SEPARATOR_OR, + // SEPARATOR_AND, // with parhenthesis => harder + // SEPARATOR_OR, } t_separator; typedef struct |
