-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncat.c
executable file
·29 lines (26 loc) · 1.1 KB
/
ft_strncat.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tnghondz <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/05/28 21:55:58 by tnghondz #+# #+# */
/* Updated: 2018/05/30 00:25:50 by tnghondz ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *dest, const char *src, size_t n)
{
int i;
size_t x;
x = 0;
i = ft_strlen(dest);
while (src[x] != '\0' && x < n)
{
dest[i + x] = src[x];
x++;
}
dest[i + x] = '\0';
return (dest);
}