-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strncat.c
26 lines (23 loc) · 1.13 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strncat.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ybitton <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/12 16:31:06 by ybitton #+# #+# */
/* Updated: 2016/12/15 14:23:26 by ybitton ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *dest, const char *src, size_t n)
{
char *destination;
destination = dest;
while (*destination != '\0')
destination++;
while (n-- > 0 && *src != '\0')
*destination++ = *src++;
*destination = '\0';
return (dest);
}