summaryrefslogtreecommitdiffstats
path: root/src/s_struct.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/s_struct.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/s_struct.h b/src/s_struct.h
index e03bbf2..f5d2a23 100644
--- a/src/s_struct.h
+++ b/src/s_struct.h
@@ -19,7 +19,7 @@
/*
** redir(int8_t) index
-** --------------------
+** -------------------
** -1: <
** 1: >
** 2: >>
@@ -49,8 +49,17 @@ struct s_lpipes
struct s_lpipes *next;
};
+/*
+** nextif(uint8_t) index
+** ---------------------
+** 0: ;
+** 1: &&
+** 2: ||
+*/
+
typedef struct s_line
{
+ uint8_t nextif;
struct s_com *com;
struct s_lpipes *pipes;
struct s_line *next;