27 lines
1.0 KiB
C
27 lines
1.0 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_striteri.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: hexplor <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/11/23 12:50:39 by hexplor #+# #+# */
|
|
/* Updated: 2023/11/23 13:54:15 by hexplor ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_striteri(char *s, void (*f)(unsigned int, char *))
|
|
{
|
|
unsigned int i;
|
|
|
|
i = 0;
|
|
while (*s)
|
|
{
|
|
f(i, s);
|
|
i++;
|
|
s++;
|
|
}
|
|
}
|