-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
26 lines (23 loc) · 1.01 KB
/
ft_striter.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_striter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lbopp <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/06 16:22:21 by lbopp #+# #+# */
/* Updated: 2016/11/13 08:54:52 by lbopp ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char*))
{
int i;
i = 0;
if (s && f)
while (s[i])
{
f(&s[i]);
i++;
}
}