summaryrefslogtreecommitdiffstats
path: root/src/b_export.h
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-08-07 15:09:31 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-08-07 15:09:31 +0200
commit85e83d4179e0a0e4d7c07aff750cab9478e461b9 (patch)
tree1eb28924de62c9348259b9012b8606d67008ad83 /src/b_export.h
parentOld style rewrite in progress (diff)
download42-minishell-85e83d4179e0a0e4d7c07aff750cab9478e461b9.tar.gz
42-minishell-85e83d4179e0a0e4d7c07aff750cab9478e461b9.tar.bz2
42-minishell-85e83d4179e0a0e4d7c07aff750cab9478e461b9.tar.xz
42-minishell-85e83d4179e0a0e4d7c07aff750cab9478e461b9.tar.zst
42-minishell-85e83d4179e0a0e4d7c07aff750cab9478e461b9.zip
Forked builtins
Diffstat (limited to '')
-rw-r--r--src/b_export.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/b_export.h b/src/b_export.h
index be703c2..2634349 100644
--- a/src/b_export.h
+++ b/src/b_export.h
@@ -13,8 +13,16 @@
#ifndef B_EXPORT_H
#define B_EXPORT_H
+#include <libft.h>
+#include <stdint.h>
+
#include "s_struct.h"
+t_bool check_valid_identifier(const char arg[]);
+t_bool check_equals(const char *arg);
+void b_add_to_env_from_globals(const char varname[],
+ const char var[],
+ t_msh *msh);
uint8_t b_export(char *args[], t_msh *msh);
#endif