/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* export.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: marde-vr +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/02/18 18:29:20 by marde-vr #+# #+# */ /* Updated: 2024/02/28 12:45:59 by marde-vr ### ########.fr */ /* */ /* ************************************************************************** */ #include "minishell.h" int ft_export(t_msh *msh) { t_cmd *cmd; cmd = msh->cmds; (void)cmd; return (0); } int ft_unset(t_msh *msh) { t_cmd *cmd; cmd = msh->cmds; (void)cmd; return (0); }