-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncat.c
29 lines (26 loc) · 1.14 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: malexand <malexand@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/04 11:55:13 by malexand #+# #+# */
/* Updated: 2017/02/16 17:33:39 by malexand ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *dest, const char *src, size_t n)
{
size_t count;
size_t len;
count = 0;
len = ft_strlen(dest);
while (src[count] != '\0' && count < n)
{
dest[len + count] = src[count];
count++;
}
dest[len + count] = '\0';
return (dest);
}