/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_any.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/07/16 21:23:26 by cacharle #+# #+# */ /* Updated: 2019/07/18 11:03:40 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include int ft_any(char **tab, int (*f)(char*)) { while (*tab != NULL) if ((*f)(*tab++)) return (1); return (0); }