/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_strncpy.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/23 15:38:25 by bchanot #+# #+# */ /* Updated: 2018/10/12 23:16:17 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" char *ft_strncpy(char *dst, const char *src, size_t n) { return ((char *)ft_memcpy(dst, src, n)); }