diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-23 16:29:20 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-23 16:29:20 +0200 |
commit | 58f7f3e9d2a61d46e57ffe324ae6ae7f21e875a3 (patch) | |
tree | d43399d8ac6ce24496b86918496d57c37d628698 /src/ft_b_unset.c | |
parent | Very good redirs (diff) | |
download | 42-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.c | 24 |
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); +} |