From cbfedb7bc5cba9b0e08c727ff3116a42244977e0 Mon Sep 17 00:00:00 2001 From: Sergio Date: Thu, 30 Oct 2025 12:56:35 +0100 Subject: [PATCH] structure: moved t_command struct definition from parser header file to core header file --- include/core.h | 20 +++++++++++++++++++- include/minishell.h | 7 +++++-- include/parser.h | 16 ++-------------- 3 files changed, 26 insertions(+), 17 deletions(-) diff --git a/include/core.h b/include/core.h index 8a3608b..b8234f9 100644 --- a/include/core.h +++ b/include/core.h @@ -6,7 +6,7 @@ /* By: sede-san // readline(3), rl_clear_history(), // rl_on_new_line(), rl_replace_line(), // rl_redisplay() diff --git a/include/parser.h b/include/parser.h index 61fd6c7..e2b8972 100644 --- a/include/parser.h +++ b/include/parser.h @@ -6,7 +6,7 @@ /* By: sede-san