-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_calloc.c
executable file
Β·23 lines (20 loc) Β· 1.05 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_calloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: selchoi <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/12/26 21:30:09 by selchoi #+# #+# */
/* Updated: 2021/01/09 16:43:34 by selchoi ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_calloc(size_t count, size_t size)
{
void *mem;
if (!(mem = malloc(count * size)))
return (NULL);
ft_bzero(mem, (count * size));
return (mem);
}