-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_strmapi.c
30 lines (27 loc) · 1.2 KB
/
ft_strmapi.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_strmapi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aldokezer <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/18 12:38:06 by orezek #+# #+# */
/* Updated: 2023/11/01 16:10:00 by aldokezer ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strmapi(char const *s, char (*f)(unsigned int, char))
{
int str_len;
unsigned int index;
char *ptr;
str_len = ft_strlen(s);
index = 0;
ptr = malloc((str_len + 1) * sizeof(char));
if (ptr == NULL)
return (NULL);
while (*s)
*ptr++ = f(index++, *s++);
*ptr = '\0';
return (ptr - str_len);
}