-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_striteri.c
More file actions
25 lines (22 loc) · 1.01 KB
/
Copy pathft_striteri.c
File metadata and controls
25 lines (22 loc) · 1.01 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_striteri.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tsargsya <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/09 16:06:23 by tsargsya #+# #+# */
/* Updated: 2024/12/12 21:00:22 by tsargsya ### ########.fr */
/* */
/* ************************************************************************** */
#include <stddef.h>
void ft_striteri(char *s, void (*f)(unsigned int, char*))
{
size_t i;
i = 0;
while (s[i])
{
f(i, s + i);
i++;
}
}