added unset

This commit is contained in:
mdev9
2024-02-28 12:59:54 +01:00
parent 0f17caaa8e
commit 02d4d7d782
4 changed files with 18 additions and 4 deletions

View File

@ -6,7 +6,7 @@
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/02/18 18:29:20 by marde-vr #+# #+# */
/* Updated: 2024/02/21 17:44:43 by marde-vr ### ########.fr */
/* Updated: 2024/02/28 12:45:59 by marde-vr ### ########.fr */
/* */
/* ************************************************************************** */
@ -20,3 +20,12 @@ int ft_export(t_msh *msh)
(void)cmd;
return (0);
}
int ft_unset(t_msh *msh)
{
t_cmd *cmd;
cmd = msh->cmds;
(void)cmd;
return (0);
}