cub3d/libft/src/str/ft_striteri.c

29 lines
1.1 KiB
C
Raw Normal View History

2025-05-03 22:54:55 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striteri.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tchampio <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/18 09:54:48 by tchampio #+# #+# */
/* Updated: 2024/10/18 10:09:15 by tchampio ### ########.fr */
/* */
/* ************************************************************************** */
#include "../../includes/libft.h"
void ft_striteri(char *s, void (*f)(unsigned int, char*))
{
size_t i;
if (!s || !f)
return ;
i = 0;
while (*s)
{
(*f)(i, s);
i++;
s++;
}
}