-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
21 lines (19 loc) · 1022 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* striter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: dskrypny <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/11 21:49:02 by dskrypny #+# #+# */
/* Updated: 2018/04/20 19:52:25 by dskrypny ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char *))
{
if (s == NULL || f == NULL)
return ;
while (*s)
f(s++);
}