/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_striter.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: bchanot +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2015/11/25 18:21:53 by bchanot #+# #+# */ /* Updated: 2017/11/21 16:35:15 by bchanot ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_striter(char *s, void (*f)(char *)) { if (s && f) { while (*s) { f(&(*s)); s++; } } }