diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-16 19:52:47 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-09-16 19:52:47 +0200 |
commit | d64bf8070719f761201501c9453a8e255996cdd4 (patch) | |
tree | fe5a58da30e564575dbc542c101b3fd380d56ef3 /src/b_h.h | |
parent | TODO update (diff) | |
download | 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.tar.gz 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.tar.bz2 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.tar.xz 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.tar.zst 42-minishell-d64bf8070719f761201501c9453a8e255996cdd4.zip |
In progress
Diffstat (limited to '')
-rw-r--r-- | src/b_h.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/b_h.h b/src/b_h.h new file mode 100644 index 0000000..30a78fd --- /dev/null +++ b/src/b_h.h @@ -0,0 +1,22 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* b_h.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 B_H_H +#define B_H_H + +#include <stdint.h> + +#include "s_struct.h" + +uint8_t b_h(char *args[], t_msh *msh); + +#endif |