update: added isatty support and prompt usage

This commit is contained in:
2026-02-13 20:18:26 +01:00
parent 5df1520224
commit 3f17f7789c
4 changed files with 26 additions and 7 deletions

View File

@@ -6,7 +6,7 @@
/* By: sede-san <sede-san@student.42madrid.com +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/10/22 19:10:13 by sede-san #+# #+# */
/* Updated: 2026/02/12 20:19:23 by sede-san ### ########.fr */
/* Updated: 2026/02/13 20:06:08 by sede-san ### ########.fr */
/* */
/* ************************************************************************** */
@@ -66,6 +66,13 @@ typedef struct s_variables
// char **internal;
} t_variables;
typedef struct s_prompt
{
const char *ps1; // primary prompt string
const char *ps2; // secondary prompt string for multiline input
} t_prompt;
/**
* @brief Main minishell structure containing global state information
*
@@ -78,6 +85,7 @@ typedef struct s_minishell
{
t_variables variables;
t_hashmap *builtins;
t_prompt prompt;
uint8_t exit_status;
bool exit;
} t_minishell;