diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-24 18:05:34 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-08-24 18:05:34 +0200 |
commit | f10e352f8740009d1a93f90160fda7aeabf2a2dc (patch) | |
tree | d8c98fdad9cb985d05e63d0999c4c252c233b8c8 /src/m_loop_next.h | |
parent | TODO update (diff) | |
download | 42-minishell-f10e352f8740009d1a93f90160fda7aeabf2a2dc.tar.gz 42-minishell-f10e352f8740009d1a93f90160fda7aeabf2a2dc.tar.bz2 42-minishell-f10e352f8740009d1a93f90160fda7aeabf2a2dc.tar.xz 42-minishell-f10e352f8740009d1a93f90160fda7aeabf2a2dc.tar.zst 42-minishell-f10e352f8740009d1a93f90160fda7aeabf2a2dc.zip |
Counter | and counter \
Diffstat (limited to '')
-rw-r--r-- | src/m_loop_next.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/m_loop_next.h b/src/m_loop_next.h new file mode 100644 index 0000000..56221e7 --- /dev/null +++ b/src/m_loop_next.h @@ -0,0 +1,24 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* m_loop_next.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 M_LOOP_NEXT_H +#define M_LOOP_NEXT_H + +#include <stdint.h> + +#include "s_struct.h" + +char *m_check_multi_backslash(int32_t fd, char *line, t_msh *msh); +char *m_check_multi_pipe(int32_t fd, char *line, t_msh *msh); + + +#endif |