/** ** \file export.c ** \brief `export` builtin */ #include "minishell.h" int builtin_export(char **argv, t_env env) { (void)argv; (void)env; /* if (ft_htset(env, ) == NULL) */ /* return (-1); */ return (0); }