diff options
Diffstat (limited to 'libft/src/ft_calloc.c')
-rw-r--r-- | libft/src/ft_calloc.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libft/src/ft_calloc.c b/libft/src/ft_calloc.c index 88c5457..e8f81f7 100644 --- a/libft/src/ft_calloc.c +++ b/libft/src/ft_calloc.c @@ -14,15 +14,16 @@ #include <stddef.h> #include <stdlib.h> -void - *ft_calloc(size_t count, size_t size) +void *ft_calloc(size_t count, size_t size) { void *ptr; ptr = 0; ptr = malloc(count * size); - if (!ptr) + if (ptr == NULL) + { return (NULL); + } ft_bzero(ptr, count * size); return (ptr); } |