-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_calloc.c
25 lines (22 loc) · 1.1 KB
/
ft_calloc.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_calloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jenavarr <jenavarr@student.42barcel> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/15 13:32:20 by jenavarr #+# #+# */
/* Updated: 2022/05/15 13:46:34 by jenavarr ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include "libft.h"
void *ft_calloc(size_t nitems, size_t size)
{
void *pointer;
pointer = malloc(nitems * size);
if (pointer == 0)
return (pointer);
ft_bzero(pointer, nitems * size);
return (pointer);
}