/* ************************************************************************** */ /* */ /* :::::::: */ /* test5.c :+: :+: */ /* +:+ */ /* By: houtworm +#+ */ /* +#+ */ /* Created: 2023/02/21 02:56:39 by houtworm #+# #+# */ /* Updated: 2023/10/18 17:16:50 by houtworm ######## odam.nl */ /* */ /* ************************************************************************** */ #include "../../tmp/libft.h" #include #include int main(void) { char *s; int c; s = NULL; c = 'l'; if (ft_strrchr(s, c)) return (1); return (0); }