-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
executable file
·25 lines (23 loc) · 1021 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: jraymond <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/13 17:53:01 by jraymond #+# #+# */
/* Updated: 2017/11/16 17:34:07 by jraymond ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char *))
{
if (s && f)
{
while (*s)
{
f(&(*s));
s++;
}
}
}