-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
24 lines (22 loc) · 1019 Bytes
/
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nromptea <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/28 00:18:11 by nromptea #+# #+# */
/* Updated: 2015/12/02 20:45:34 by nromptea ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char *))
{
if (!s || !f)
return ;
while (*s)
{
f(s);
s++;
}
}