-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_striteri.c
More file actions
38 lines (34 loc) · 1.38 KB
/
ft_striteri.c
File metadata and controls
38 lines (34 loc) · 1.38 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striteri.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: stdi-pum <stdi-pum@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/05 18:42:09 by stdi-pum #+# #+# */
/* Updated: 2023/12/05 19:35:06 by stdi-pum ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
// Parameters
// s: The string on which to iterate.
// f: The function to apply to each character.
// Return value
// None
// External functs.
// None
// Description
// Applies the function ’f’ on each character of
// the string passed as argument, passing its index
// as first argument. Each character is passed by
// address to ’f’ to be modified if necessary.
void ft_striteri(char *s, void (*f)(unsigned int, char*))
{
int i;
i = 0;
while (s[i] != '\0')
{
f (i, &s[i]);
i ++;
}
}