-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_calloc.c
More file actions
26 lines (23 loc) · 1.11 KB
/
ft_calloc.c
File metadata and controls
26 lines (23 loc) · 1.11 KB
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_calloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: slepetit <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/30 07:13:17 by slepetit #+# #+# */
/* Updated: 2022/04/11 18:55:48 by slepetit ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_calloc(size_t nmemb, size_t size)
{
void *p;
if (nmemb >= 65535 && size >= 65535)
return (NULL);
p = (void *)malloc(nmemb * size);
if (p == NULL)
return (NULL);
ft_bzero(p, (nmemb * size));
return (p);
}