42/d10/ex03/ft_any.c

25 lines
1 KiB
C
Raw Normal View History

2016-11-20 02:20:23 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_any.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* 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);
}