Merge branch 'feature/executor-gl' into solo

This commit is contained in:
2026-02-12 21:26:12 +01:00
30 changed files with 1633 additions and 353 deletions

View File

@@ -82,12 +82,6 @@ typedef struct s_minishell
bool exit;
} t_minishell;
typedef struct s_redirection
{
t_token_type type;
char *target;
} t_redirection;
/**
* @brief Structure representing a single command in the shell
*
@@ -142,4 +136,6 @@ extern void free_envp(char **envp);
extern char *get_env(const char *env_name, t_minishell *msh);
extern void unset_env(const char *env_name, t_minishell *msh);
#endif /* CORE_H */