-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strcat.c
32 lines (29 loc) · 1.09 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
27
28
29
30
31
32
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kamako <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/05/27 14:12:47 by kamako #+# #+# */
/* Updated: 2019/06/03 13:47:57 by kamako ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strcat(char *s1, const char *s2)
{
char *dst;
char *src;
dst = s1;
src = (char *)s2;
while (*dst)
dst++;
while (*src)
{
*dst = *src;
dst++;
src++;
}
*dst = '\0';
return (s1);
}