aboutsummaryrefslogtreecommitdiff
path: root/src/builtin/export.c
blob: 1b148a9cc70d8681d28133d97f935154a8ba0059 (plain)
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);
}