-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
27 lines (24 loc) · 1.04 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lboukrou <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/26 00:30:52 by lboukrou #+# #+# */
/* Updated: 2017/11/27 18:35:10 by lboukrou ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char *))
{
int i;
if (s == NULL || (*f) == NULL)
return ;
i = 0;
while (s[i])
{
(*f)(&s[i]);
i++;
}
}