-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
executable file
·21 lines (19 loc) · 1011 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ioleksiu <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/23 16:45:42 by ioleksiu #+# #+# */
/* Updated: 2016/12/29 11:00:21 by ioleksiu ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char *))
{
if (!s || !f)
return ;
while (*s)
(*f)(s++);
}