aboutsummaryrefslogtreecommitdiff
path: root/include/ast.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ast.h')
-rw-r--r--include/ast.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/ast.h b/include/ast.h
index 1dd28a1..e63ab22 100644
--- a/include/ast.h
+++ b/include/ast.h
@@ -6,7 +6,7 @@
/* By: charles <charles.cabergs@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/01 17:05:38 by charles #+# #+# */
-/* Updated: 2020/05/14 23:54:46 by charles ### ########.fr */
+/* Updated: 2020/06/09 11:44:45 by charles ### ########.fr */
/* */
/* ************************************************************************** */
@@ -66,9 +66,9 @@ typedef struct s_line
typedef struct s_cmd
{
- char **argv;
- char *in;
- char *out;
+ char **argv; // change to t_ftvec of t_token
+ char *in; // change to t_token
+ char *out; // change to t_token
bool is_append;
} t_cmd;