-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striter.c
25 lines (22 loc) · 1 KB
/
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: nahmed-m <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2015/11/30 02:26:15 by nahmed-m #+# #+# */
/* Updated: 2015/11/30 04:13:20 by nahmed-m ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_striter(char *s, void (*f)(char *))
{
int i;
i = 0;
while (s[i] != '\0')
{
f(&s[i]);
i++;
}
}