-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strcat.c
33 lines (30 loc) · 1.12 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
33
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strcat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ybouzgao <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/08 17:07:34 by ybouzgao #+# #+# */
/* Updated: 2017/11/11 15:54:08 by ybouzgao ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strcat(char *s1, const char *s2)
{
int i;
int j;
char *ss1;
ss1 = (char *)s1;
i = 0;
while (ss1[i] != '\0')
i++;
j = 0;
while (s2[j] != '\0')
{
ss1[i + j] = s2[j];
j++;
}
ss1[i + j] = '\0';
return (ss1);
}