diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-21 18:34:29 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-21 18:34:29 +0200 |
commit | 92c184c047323fb557d98c4d7e7c884e474c762e (patch) | |
tree | 8dc8b78b812b93aaeffc19d0dbbfa1bee24484f3 /src/ft_b_exit.h | |
parent | Messy echo (diff) | |
download | 42-minishell-92c184c047323fb557d98c4d7e7c884e474c762e.tar.gz 42-minishell-92c184c047323fb557d98c4d7e7c884e474c762e.tar.bz2 42-minishell-92c184c047323fb557d98c4d7e7c884e474c762e.tar.xz 42-minishell-92c184c047323fb557d98c4d7e7c884e474c762e.tar.zst 42-minishell-92c184c047323fb557d98c4d7e7c884e474c762e.zip |
Builtin exit is bav
Diffstat (limited to '')
-rw-r--r-- | src/ft_b_exit.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/ft_b_exit.h b/src/ft_b_exit.h new file mode 100644 index 0000000..5dd2a07 --- /dev/null +++ b/src/ft_b_exit.h @@ -0,0 +1,22 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* ft_b_exit.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* 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 */ +/* */ +/* ************************************************************************** */ + +#ifndef FT_B_EXIT_H +#define FT_B_EXIT_H + +#include <stdint.h> + +uint8_t + ft_b_exit(char *args[], + t_msh *msh); + +#endif |