-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_calloc.c
28 lines (25 loc) · 1.12 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
26
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_calloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: msabr <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/11/14 02:02:15 by msabr #+# #+# */
/* Updated: 2024/11/18 19:26:14 by msabr ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_calloc(size_t count, size_t size)
{
unsigned char *p;
size_t len;
len = count * size;
if (size != 0 && (count != len / size))
return (NULL);
p = malloc(len);
if (!p)
return (NULL);
ft_bzero(p, len);
return (p);
}