-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncat.c
30 lines (27 loc) · 1.12 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
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lboukrou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/12/10 17:14:22 by lboukrou #+# #+# */
/* Updated: 2017/12/10 17:41:29 by lboukrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *dest, const char *src, size_t n)
{
size_t i;
size_t end;
i = 0;
end = ft_strlen(dest);
while (src[i] != '\0' && i < n)
{
dest[end] = src[i];
i++;
end++;
}
dest[end] = '\0';
return (dest);
}