-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strmapi.c
43 lines (39 loc) · 1.35 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
31
32
33
34
35
36
37
38
39
40
41
42
43
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strmapi.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ana-lda- <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/04/16 10:54:04 by ana-lda- #+# #+# */
/* Updated: 2024/04/30 15:10:27 by ana-lda- ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/** @brief aplica a funcao 'f' a cada char da string*/
/*char funcao(unsigned int n, char c)
{
c = n + c;
return (c);
}*/
char *ft_strmapi(char const *s, char (*f)(unsigned int, char))
{
char *str;
int i;
str = ft_calloc(sizeof(char), ft_strlen(s) + 1);
if (!str)
return (NULL);
i = 0;
while (s[i])
{
str[i] = f(i, s[i]);
i++;
}
str[i] = '\0';
return (str);
}
/*#include <stdio.h>
int main(void)
{
printf("%s\n", ft_strmapi("abc", funcao));
}*/