summaryrefslogtreecommitdiffstats
path: root/src/m_loop_next.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-10-27 19:59:20 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-10-27 19:59:20 +0100
commitc5aae008dee36276154882d8fd56c3bdeb473474 (patch)
treea40740914847ebf39a5f8cb3acf6a48c8b9d61ef /src/m_loop_next.c
parentTODO update (diff)
download42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.gz
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.bz2
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.xz
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.tar.zst
42-minishell-c5aae008dee36276154882d8fd56c3bdeb473474.zip
Now norme
Diffstat (limited to '')
-rw-r--r--src/m_loop_next.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/m_loop_next.c b/src/m_loop_next.c
index a31e850..e29b6dd 100644
--- a/src/m_loop_next.c
+++ b/src/m_loop_next.c
@@ -11,7 +11,6 @@
/* ************************************************************************** */
#include <libft.h>
-#include <stdint.h>
#include <unistd.h>
#include "d_define.h"
@@ -20,7 +19,7 @@
#include "s_struct.h"
#include "u_utils.h"
-char *m_check_multi_backslash(int32_t fd, char line[], t_msh *msh)
+char *m_check_multi_backslash(int fd, char line[], t_msh *msh)
{
if (line[ft_strlen(line) - 1] == '\\')
{
@@ -30,7 +29,7 @@ char *m_check_multi_backslash(int32_t fd, char line[], t_msh *msh)
return (line);
}
-char *m_check_multi_pipe(int32_t fd, char line[], t_msh *msh)
+char *m_check_multi_pipe(int fd, char line[], t_msh *msh)
{
char *pipe;
@@ -52,7 +51,7 @@ char *m_check_multi_pipe(int32_t fd, char line[], t_msh *msh)
return (line);
}
-char *m_check_multi_and(int32_t fd, char line[], t_msh *msh)
+char *m_check_multi_and(int fd, char line[], t_msh *msh)
{
char *and;