-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striteri.c
26 lines (24 loc) · 1.05 KB
/
ft_striteri.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striteri.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: cyildiri <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/10/03 14:31:52 by cyildiri #+# #+# */
/* Updated: 2016/10/03 14:41:03 by cyildiri ### ########.fr */
/* */
/* ************************************************************************** */
void ft_striteri(char *s, void (*f)(unsigned int, char *))
{
unsigned int index;
if (s)
{
index = 0;
while (s[index] != '\0')
{
f(index, &s[index]);
index++;
}
}
}