aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_striteri.c
blob: ba701db8dd5942b9aa294d2f139cf5b660902b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "libft.h"

void
ft_striteri (char *s, void (*f) (unsigned int, char *))
{
  unsigned int i;

  i = 0;
  while (s[i])
    {
      f (i, &s[i]);
      i++;
    }
}