-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
25 lines (23 loc) · 1017 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
25
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mle-roy <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2013/11/25 12:54:38 by mle-roy #+# #+# */
/* Updated: 2013/12/10 14:50:42 by mle-roy ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char *))
{
if (s && f)
{
while (*s)
{
f(s);
++s;
}
}
}