From a6bf9cb60ff88a2c957cf718b24c7ddaddbd5864 Mon Sep 17 00:00:00 2001 From: Sergio Date: Thu, 30 Oct 2025 12:52:30 +0100 Subject: [PATCH 1/2] update: added characters to chardefs --- include/chardefs.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/chardefs.h b/include/chardefs.h index f56477c..b10f55f 100644 --- a/include/chardefs.h +++ b/include/chardefs.h @@ -6,15 +6,20 @@ /* By: sede-san Date: Thu, 30 Oct 2025 12:56:35 +0100 Subject: [PATCH 2/2] 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