summaryrefslogtreecommitdiffstats
path: root/src/ft_b_unset.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 16:29:20 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 16:29:20 +0200
commit58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3 (patch)
treed43399d8ac6ce24496b86918496d57c37d628698 /src/ft_b_unset.c
parentVery good redirs (diff)
download42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.tar.gz
42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.tar.bz2
42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.tar.xz
42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.tar.zst
42-minishell-58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3.zip
Prepared builtins templates
Diffstat (limited to 'src/ft_b_unset.c')
-rw-r--r--src/ft_b_unset.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ft_b_unset.c b/src/ft_b_unset.c
new file mode 100644
index 0000000..a382aca
--- /dev/null
+++ b/src/ft_b_unset.c
@@ -0,0 +1,24 @@
+/* ************************************************************************** */
+/* */
+/* ::: :::::::: */
+/* ft_b_unset.c :+: :+: :+: */
+/* +:+ +:+ +:+ */
+/* By: rbousset <marvin@42.fr> +#+ +:+ +#+ */
+/* +#+#+#+#+#+ +#+ */
+/* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */
+/* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */
+/* */
+/* ************************************************************************** */
+
+#include <stdint.h>
+#include "ft_s_struct.h"
+
+uint8_t
+ ft_b_unset(char *args[],
+ t_msh *msh)
+{
+ (void)args;
+ (void)msh;
+ /* TODO: do unset */
+ return (0);
+}