-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strmap.c
32 lines (29 loc) · 1.17 KB
/
ft_strmap.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strmap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mle-roy <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2013/11/25 12:59:58 by mle-roy #+# #+# */
/* Updated: 2013/11/26 19:38:44 by mle-roy ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include "libft.h"
char *ft_strmap(char const *s, char (*f)(char))
{
int i;
char *new;
i = 0;
new = (char*)(malloc(sizeof(new) * (ft_strlen(s) + 1)));
if (new == NULL)
return (NULL);
while (s[i] != '\0')
{
new[i] = f(s[i]);
i++;
}
new[i] = '\0';
return (new);
}