-
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: abkssiba <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/20 13:10:21 by abkssiba #+# #+# */
/* Updated: 2021/05/24 16:08:51 by abkssiba ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strncat(char *dest, const char *src, int nb)
{
int len_dest;
int i;
i = 0;
len_dest = ft_strlen(dest);
while (src[i] && i < nb)
{
dest[len_dest] = src[i];
i++;
len_dest++;
}
dest[len_dest] = '\0';
return (dest);
}