-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_strmap.c
35 lines (32 loc) · 1.2 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
33
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* gt_strmap.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: twakrim <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2018/10/15 18:42:00 by twakrim #+# #+# */
/* Updated: 2018/10/27 01:45:45 by twakrim ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
char *ft_strmap(char const *s, char (*f)(char))
{
char *str;
unsigned int i;
if (s && f)
{
str = (char *)malloc(sizeof(char) * (ft_strlen(s) + 1));
if (str == NULL)
return (NULL);
i = 0;
while (s[i] != '\0')
{
str[i] = (f)(s[i]);
i++;
}
str[i] = '\0';
return (str);
}
return (NULL);
}