summaryrefslogtreecommitdiffstats
path: root/libft/src/ft_strmapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'libft/src/ft_strmapi.c')
-rw-r--r--libft/src/ft_strmapi.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libft/src/ft_strmapi.c b/libft/src/ft_strmapi.c
index fe455c1..6821802 100644
--- a/libft/src/ft_strmapi.c
+++ b/libft/src/ft_strmapi.c
@@ -12,8 +12,7 @@
#include <libft.h>
-char
- *ft_strmapi(const char *s, char (*f)(unsigned int, char))
+char *ft_strmapi(const char *s, char (*f)(unsigned int, char))
{
unsigned int i;
char *nstr;
@@ -22,9 +21,9 @@ char
return (NULL);
i = 0;
nstr = (char *)ft_calloc(ft_strlen(s) + 1, sizeof(char));
- if (!nstr)
+ if (nstr == NULL)
return (NULL);
- while (s[i])
+ while (s[i] != '\0')
{
nstr[i] = (*f)(i, s[i]);
i++;