-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_striteri.c
29 lines (26 loc) · 1.09 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
29
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striteri.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: vopolonc <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/11/07 10:31:10 by vopolonc #+# #+# */
/* Updated: 2018/11/16 08:24:46 by vopolonc ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striteri(char *s, void (*f)(unsigned int, char *))
{
size_t len;
unsigned int i;
if (!s || !(f))
return ;
i = 0;
len = ft_strlen(s);
while (i < len)
{
f(i, &s[i]);
i++;
}
}