/* ************************************************************************** */ /* */ /* :::::::: */ /* test7.c :+: :+: */ /* +:+ */ /* By: houtworm +#+ */ /* +#+ */ /* Created: 2023/02/21 02:38:36 by houtworm #+# #+# */ /* Updated: 2023/10/18 17:15:05 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { char *str; str = ft_strchr("hallo", 'h'); if (memcmp(str, "hallo\0", 6)) return (1); return (0); }