-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
17 lines (16 loc) · 963 Bytes
/
ft_striter.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striter.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: thakala <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/11/14 17:11:03 by thakala #+# #+# */
/* Updated: 2021/11/29 21:49:51 by thakala ### ########.fr */
/* */
/* ************************************************************************** */
void ft_striter(char *s, void (*f)(char *s))
{
while (*s)
f(s++);
}