/* ************************************************************************** */ /* */ /* .--. _ */ /* test8.c |o_o || | */ /* |:_/ || |_ _ ___ __ */ /* By: houtworm // \ \ __| | | \ \/ / */ /* (| | )|_| |_| |> < */ /* Created: 2023/02/21 02:59:35 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ /* Updated: 2023/02/28 20:11:57 by houtworm \___)=(___/ */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { int r; char *s; r = 0; s = malloc(8 * 6); strcpy(s, "Hallo"); ft_memset(s, '*', 0); if (strncmp(s, "Hallo", 6)) r = 1; free (s); return (r); }