-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strcat.c
30 lines (27 loc) · 1.16 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
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_strcat.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: cgarrot <[email protected]> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/10/06 05:08:18 by cgarrot #+# ## ## #+# */
/* Updated: 2018/10/07 08:40:05 by cgarrot ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
char *ft_strcat(char *s1, const char *s2)
{
unsigned int len;
unsigned int i;
i = 0;
len = ft_strlen(s1);
while (s2[i])
{
s1[len + i] = s2[i];
i++;
}
s1[len + i] = '\0';
return (s1);
}