migrated to msh struct and normed

This commit is contained in:
mdev9
2024-02-21 17:47:23 +01:00
parent d70952b7be
commit c1ed9b355d
10 changed files with 132 additions and 125 deletions

View File

@ -6,15 +6,17 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/18 18:29:20 by marde-vr #+# #+# */
/* Updated: 2024/02/18 18:39:39 by marde-vr ### ########.fr */
/* Updated: 2024/02/21 17:44:43 by marde-vr ### ########.fr */
/* */
/* ************************************************************************** */
#include "minishell.h"
int ft_export(t_cmd *cmd, t_env **env)
int ft_export(t_msh *msh)
{
t_cmd *cmd;
cmd = msh->cmds;
(void)cmd;
(void)env;
return (0);
}