aboutsummaryrefslogtreecommitdiff
path: root/src/builtin/export.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/builtin/export.c')
-rw-r--r--src/builtin/export.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/builtin/export.c b/src/builtin/export.c
index c0839b9..1b148a9 100644
--- a/src/builtin/export.c
+++ b/src/builtin/export.c
@@ -5,7 +5,11 @@
#include "minishell.h"
-/* int export(t_env env, char **argv) */
-/* { */
-/* return (0); */
-/* } */
+int builtin_export(char **argv, t_env env)
+{
+ (void)argv;
+ (void)env;
+ /* if (ft_htset(env, ) == NULL) */
+ /* return (-1); */
+ return (0);
+}