refactor(std_fds): allow for ability to store multiple std fds savesets

This commit is contained in:
Khaïs COLIN 2025-04-28 12:11:27 +02:00
parent 255a1382da
commit bd06d9f19c
11 changed files with 105 additions and 46 deletions

View file

@ -6,7 +6,7 @@
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/03/31 14:16:13 by khais #+# #+# */
/* Updated: 2025/04/18 14:03:06 by khais ### ########.fr */
/* Updated: 2025/04/28 12:48:00 by khais ### ########.fr */
/* */
/* ************************************************************************** */
@ -25,6 +25,7 @@ t_builtin_type builtin_env(t_simple_cmd *cmd, t_minishell *app);
t_builtin_type builtin_unset(t_simple_cmd *cmd, t_minishell *app);
t_builtin_type get_builtin(t_simple_cmd *cmd);
t_builtin_type execute_builtin(t_simple_cmd *cmd, t_minishell *app);
t_builtin_type execute_builtin(t_simple_cmd *cmd, t_minishell *app,
t_std_fds *fds);
#endif // BUILTINS_H