-
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: muganiev <gf.black.tv@gmail.com> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/05/30 20:20:25 by muganiev #+# #+# */
/* Updated: 2022/06/04 23:46:03 by muganiev ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_calloc(size_t count, size_t size)
{
char *ptr;
if (count > 2147483647 || size > 2147483647)
return (NULL);
ptr = malloc(size * count);
if (!ptr)
return (NULL);
ft_memset(ptr, 0, size * count);
return (ptr);
}