forked from josanri/Libft_extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_striteri.c
30 lines (27 loc) · 1.22 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striteri.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aalvarez <aalvarez@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/08/17 18:50:42 by aalvarez #+# #+# */
/* Updated: 2022/08/17 20:11:35 by aalvarez ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/**
* @brief takes a string pointed by s and applies the function (*f)
* to each of its characters.
*
* @param s the string to travel.
* @param f the function to apply to every charracter
* of the string pointted by s.
*/
void ft_striteri(char *s, void (*f)(unsigned int, char *))
{
int i;
i = -1;
while (s[++i])
f(i, &s[i]);
}