/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_striter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 10:38:16 by cacharle #+# #+# */ /* Updated: 2019/11/20 02:01:32 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_striter(char *s, void (*f)(char *)) { if (s == NULL || f == NULL) return ; while (*s) (*f)(s++); }