-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striteri.c
40 lines (36 loc) · 1.44 KB
/
ft_striteri.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striteri.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lsauvage <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2017/11/21 16:16:04 by lsauvage #+# #+# */
/* Updated: 2017/11/21 16:25:40 by lsauvage ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
** DESCRIPTION : Applique la fonction f a chaque caractere de la chaine passee
** en parametre en precisant son index en premier argument.
** Chaque caractere est passe par adresse a la fonction f afin de pouvoir etre
** modifie si necessaire.
**
** PARAM #1 : Lachaine de caracteres sur laquelle iterer.
** PARAM #2 : La fonction a appeler sur chaque caractere de s et son index.
**
** RETOUR : rien
*/
void ft_striteri(char *s, void (*f)(unsigned int, char *))
{
unsigned int i;
if (!s || !f)
return ;
i = 0;
while (*s)
{
f(i, s);
i++;
s++;
}
}