-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strmap.c
28 lines (25 loc) · 1.1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_strmap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mfebvay <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2013/11/27 18:02:18 by mfebvay #+# #+# */
/* Updated: 2015/01/28 17:55:08 by mfebvay ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
char *ft_strmap(char const *s, char (*f)(char))
{
int i;
char *str;
i = 0;
while (s[i])
i++;
str = (char *)malloc((i + 1) * sizeof(char));
str[i] = '\0';
while (s[--i])
str[i] = f(s[i]);
return (str);
}