30 lines
1.1 KiB
C
30 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_strncat.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2018/04/04 18:29:06 by tmaze #+# #+# */
|
|
/* Updated: 2018/04/10 19:07:13 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
char *ft_strncat(char *restrict dest, const char *restrict src, size_t n)
|
|
{
|
|
int dest_len;
|
|
size_t i;
|
|
|
|
dest_len = ft_strlen(dest);
|
|
i = 0;
|
|
while (++i < n && src[i])
|
|
{
|
|
dest[dest_len + i] = src[i];
|
|
i++;
|
|
}
|
|
dest[dest_len + i] = '\0';
|
|
return (dest);
|
|
}
|