/* ************************************************************************** */ /* */ /* :::::::: */ /* test5.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\0aapje", 'p'); if (str) return (1); return (0); }