-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strcat.c
32 lines (29 loc) · 1.11 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: albarret <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/05 12:58:34 by albarret #+# #+# */
/* Updated: 2018/11/12 21:23:12 by albarret ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strcat(char *dest, const char *src)
{
unsigned int i;
unsigned int j;
i = 0;
while (dest[i] != '\0')
++i;
j = 0;
while (src[j] != '\0')
{
dest[i] = src[j];
i++;
++j;
}
dest[i] = '\0';
return (dest);
}