/* ************************************************************************** */ /* */ /* .--. _ */ /* test7.c :+: :+: :+: */ /* |:_/ || |_ _ ___ __ */ /* By: houtworm // \ \ __| | | \ \/ / */ /* (| | )|_| |_| |> < */ /* Created: 2023/02/21 03:03:52 by houtworm /'\_ _/`\__|\__,_/_/\_\ */ /* Updated: 2023/02/24 21:47:13 by houtworm ### ########.fr */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { int r; char *s; char *p; r = 0; s = malloc(8 * 6); strcpy(s, "Hello"); p = ft_memchr(s, 'e', 0); if (p) r = 1; free(s); return (r); }