-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strcat.c
26 lines (23 loc) · 1.03 KB
/
ft_strcat.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: alaulom <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/11/05 13:16:59 by alaulom #+# #+# */
/* Updated: 2016/02/23 15:03:26 by alaulom ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strcat(char *s1, const char *s2)
{
char *s;
s = s1;
while (*s)
s++;
while (*s2)
*s++ = *s2++;
*s = 0;
return (s1);
}