mirror of
https://codeberg.org/la-chouette/minishell.git
synced 2025-12-06 07:28:09 +01:00
env: implement builtin env
This commit is contained in:
parent
0de583cf45
commit
1ef8b7a0ae
6 changed files with 72 additions and 5 deletions
|
|
@ -6,7 +6,7 @@
|
|||
/* By: khais <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2025/03/31 14:16:13 by khais #+# #+# */
|
||||
/* Updated: 2025/04/03 13:58:23 by khais ### ########.fr */
|
||||
/* Updated: 2025/04/03 14:17:17 by khais ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
|
|
@ -21,6 +21,7 @@ t_builtin_type builtin_cd(t_simple_cmd *cmd, t_minishell *app);
|
|||
t_builtin_type builtin_export(t_simple_cmd *cmd, t_minishell *app);
|
||||
t_builtin_type builtin_exit(t_simple_cmd *cmd, t_minishell *app);
|
||||
t_builtin_type builtin_echo(t_simple_cmd *cmd, t_minishell *app);
|
||||
t_builtin_type builtin_env(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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue