From 7a413fb5b8aee5373e6e48d7130d90c6c2110215 Mon Sep 17 00:00:00 2001 From: JozanLeClerc Date: Thu, 7 May 2020 09:21:26 +0200 Subject: Added pipes struct --- src/ft_s_struct.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src') diff --git a/src/ft_s_struct.h b/src/ft_s_struct.h index b6804bf..58c4273 100644 --- a/src/ft_s_struct.h +++ b/src/ft_s_struct.h @@ -26,6 +26,13 @@ ** 0: means no redirection */ +typedef struct s_lpipes +{ + char *com; + char **argv; + struct s_lpipes *next; +} t_lpipes; + typedef struct s_lvars { char *name; -- cgit v1.2.3