/* ************************************************************************** */ /* */ /* :::::::: */ /* test1.c :+: :+: */ /* +:+ */ /* By: houtworm +#+ */ /* +#+ */ /* Created: 2023/02/21 03:02:18 by houtworm #+# #+# */ /* Updated: 2023/10/18 17:10:16 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { int r; char *dst; char *src; r = 0; dst = malloc(8 * 8); src = malloc(8 * 7); strcpy(src, "123456"); strcpy(dst, "abcdefg"); ft_memcpy(dst, src, 7); if (strncmp(dst, "123456", 3)) r = 1; free (dst); free (src); return (r); }