1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/** ** \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); }