invalid maps
This commit is contained in:
32
Oglibft/libft/srcs/ft_strmapi.c
Normal file
32
Oglibft/libft/srcs/ft_strmapi.c
Normal file
@@ -0,0 +1,32 @@
|
||||
/* ************************************************************************** */
|
||||
/* */
|
||||
/* ::: :::::::: */
|
||||
/* ft_strmapi.c :+: :+: :+: */
|
||||
/* +:+ +:+ +:+ */
|
||||
/* By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2018/04/07 15:00:23 by tmaze #+# #+# */
|
||||
/* Updated: 2018/04/10 14:19:19 by tmaze ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
char *ft_strmapi(char const *s, char (*f)(unsigned int, char))
|
||||
{
|
||||
char *ret;
|
||||
size_t i;
|
||||
size_t s_len;
|
||||
|
||||
i = -1;
|
||||
s_len = 0;
|
||||
ret = NULL;
|
||||
if (s != NULL && f != NULL)
|
||||
{
|
||||
s_len = ft_strlen(s);
|
||||
if ((ret = ft_strnew(s_len)) != NULL)
|
||||
while (++i < s_len)
|
||||
ret[i] = (*f)(i, s[i]);
|
||||
}
|
||||
return (ret);
|
||||
}
|
Reference in New Issue
Block a user