/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_striter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 10:38:16 by cacharle #+# #+# */ /* Updated: 2019/10/07 10:38:24 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ void ft_striter(char *s, void (*f)(char *)) { while (*s) (*f)(s++); }