-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_calloc.c
18 lines (16 loc) · 996 Bytes
/
ft_calloc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_calloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jfreitas <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/11/14 10:30:54 by jfreitas #+# #+# */
/* Updated: 2019/11/15 15:39:43 by jfreitas ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_calloc(size_t count, size_t size)
{
return (ft_memalloc(count * size));
}