/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_striteri.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 10:33:09 by cacharle #+# #+# */ /* Updated: 2019/11/20 02:01:41 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ #include "libft.h" void ft_striteri(char *s, void (*f)(unsigned int, char *)) { unsigned int i; if (s == NULL || f == NULL) return ; i = 0; while (s[i]) { (*f)(i, &s[i]); i++; } }