32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* export.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: marde-vr <marde-vr@42angouleme.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* 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);
|
|
}
|