-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_striter.c
27 lines (24 loc) · 1.1 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
27
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_striter.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: cgarrot <[email protected]> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2018/10/07 07:44:06 by cgarrot #+# ## ## #+# */
/* Updated: 2018/10/09 16:41:09 by cgarrot ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char*))
{
int i;
i = 0;
if (s != 0 && f != 0)
while (s[i])
{
f(&s[i]);
i++;
}
}