aboutsummaryrefslogtreecommitdiff
path: root/ft_strmap.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-20 02:03:56 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-20 02:03:56 +0100
commita983b06df18647cf63fadad5b36f472e06f1075f (patch)
tree26d02de02b9ff31febcdb9bc0d76e7b99d2e3dbe /ft_strmap.c
parenta46f13dc1fef2af96f418984af9db6acfeaeb581 (diff)
downloadlibft-a983b06df18647cf63fadad5b36f472e06f1075f.tar.gz
libft-a983b06df18647cf63fadad5b36f472e06f1075f.tar.bz2
libft-a983b06df18647cf63fadad5b36f472e06f1075f.zip
Protected pre 2019 functions
Diffstat (limited to 'ft_strmap.c')
-rw-r--r--ft_strmap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ft_strmap.c b/ft_strmap.c
index 8661a68..74e3820 100644
--- a/ft_strmap.c
+++ b/ft_strmap.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/10/07 10:29:52 by cacharle #+# #+# */
-/* Updated: 2019/10/07 10:31:29 by cacharle ### ########.fr */
+/* Updated: 2019/11/20 02:02:23 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -19,6 +19,8 @@ char *ft_strmap(char const *s, char (*f)(char))
size_t len;
char *mapped;
+ if (s == NULL || f == NULL)
+ return (NULL);
len = ft_strlen(s);
if ((mapped = (char*)malloc(sizeof(char) * (len + 1))) == NULL)
return (NULL);