aboutsummaryrefslogtreecommitdiff
path: root/include/ast.h
diff options
context:
space:
mode:
authorDominik Kaiser2024-07-01 11:44:06 +0200
committerDominik Kaiser2024-07-01 11:44:06 +0200
commit42c693f70ff375ce15b5783c251bfa723ac528ce (patch)
tree1a2601648d3114d417a535532a7ce014e9d40eec /include/ast.h
parent8103cadfc95fb76539bfccc893a2101ccb89ea90 (diff)
downloadminishell-42c693f70ff375ce15b5783c251bfa723ac528ce.tar.gz
minishell-42c693f70ff375ce15b5783c251bfa723ac528ce.zip
Remove unneeded struct s_sequence
Diffstat (limited to 'include/ast.h')
-rw-r--r--include/ast.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/include/ast.h b/include/ast.h
index e6ad25d..356ccdd 100644
--- a/include/ast.h
+++ b/include/ast.h
@@ -6,18 +6,13 @@
/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/06/27 11:48:27 by dkaiser #+# #+# */
-/* Updated: 2024/06/28 14:56:55 by dkaiser ### ########.fr */
+/* Updated: 2024/07/01 11:43:59 by dkaiser ### ########.fr */
/* */
/* ************************************************************************** */
#include "stdlib.h"
#include "debug_tools.h"
-typedef struct s_sequence
-{
- struct s_node **nodes;
-} t_sequence;
-
enum e_node_type
{
ASSIGN_NODE,