index
:
libft.git
cub3d
fractol
ft_ls
ft_select
ft_ssl
malloc
master
minishell
push_swap
rendu
scop
School project: Rewritting some libc functions and adding new ones
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
ft_striter.c
blob: a4e69bc6e2d828ba4b1c1a922fc0dbf4b0b6c0f3 (
plain
)
1
2
3
4
5
void
ft_striter
(
char
*
s
,
void
(*
f
)(
char
*))
{
while
(*
s
)
(*
f
)(
s
++);
}