-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striteri.c
executable file
·28 lines (26 loc) · 1.06 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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striteri.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mmasstou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/06 16:13:42 by mmasstou #+# #+# */
/* Updated: 2021/11/23 19:23:49 by mmasstou ### ########.fr */
/* */
/* ************************************************************************** */
void ft_striteri(char *s, void (*f)(unsigned int, char *))
{
unsigned int index;
if (!s)
return ;
index = 0 ;
if (f)
{
while (s[index])
{
(*f)(index, s + index);
index++;
}
}
}