/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_any.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: gtertysh +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2016/11/07 17:28:45 by gtertysh #+# #+# */ /* Updated: 2016/11/07 18:17:41 by gtertysh ### ########.fr */ /* */ /* ************************************************************************** */ int ft_any(char **tab, int (*f)(char *)) { int i; i = 0; while (tab[i]) { if (f(tab[i++])) return (1); } return (0); }