21 lines
996 B
C
21 lines
996 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* export.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* 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 */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "minishell.h"
|
|
|
|
int ft_export(t_cmd *cmd, t_env **env)
|
|
{
|
|
(void)cmd;
|
|
(void)env;
|
|
return (0);
|
|
}
|