summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strcat.c
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-09-29 19:50:20 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-09-29 19:50:20 +0200
commit9a915b797a80c2a776027b1fcc37f1e7b8ab1b24 (patch)
tree99a0fdb289fa4ec03e8b5cc179d6c6d073f6a84a /libft/src/ft_strcat.c
parentFix (diff)
download42-minishell-9a915b797a80c2a776027b1fcc37f1e7b8ab1b24.tar.gz
42-minishell-9a915b797a80c2a776027b1fcc37f1e7b8ab1b24.tar.bz2
42-minishell-9a915b797a80c2a776027b1fcc37f1e7b8ab1b24.tar.xz
42-minishell-9a915b797a80c2a776027b1fcc37f1e7b8ab1b24.tar.zst
42-minishell-9a915b797a80c2a776027b1fcc37f1e7b8ab1b24.zip
Update
Diffstat (limited to 'libft/src/ft_strcat.c')
-rw-r--r--libft/src/ft_strcat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libft/src/ft_strcat.c b/libft/src/ft_strcat.c
index b43e439..3bec86f 100644
--- a/libft/src/ft_strcat.c
+++ b/libft/src/ft_strcat.c
@@ -10,8 +10,7 @@
/* */
/* ************************************************************************** */
-char
- *ft_strcat(char *s1, const char *s2)
+char *ft_strcat(char *s1, const char *s2)
{
int i;
int j;