/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_any.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: whaffman +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/06/23 10:51:03 by whaffman #+# #+# */ /* Updated: 2024/06/23 12:27:02 by whaffman ### ########.fr */ /* */ /* ************************************************************************** */ #include int ft_any(char **tab, int(*f)(char*)) { while (*tab) { if (f(*tab) return (1); tab++; } return (0); }