-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
22 lines (20 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ccristia <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/23 20:51:16 by ccristia #+# #+# */
/* Updated: 2017/11/30 20:32:14 by ccristia ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char *))
{
if (s != NULL && f != NULL)
{
while (*s)
f(s++);
}
}