-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_calloc.c
More file actions
30 lines (27 loc) · 1.1 KB
/
ft_calloc.c
File metadata and controls
30 lines (27 loc) · 1.1 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
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_calloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aycami <aycami@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/07 14:54:38 by aycami #+# #+# */
/* Updated: 2024/10/07 14:54:45 by aycami ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_calloc(size_t count, size_t size)
{
char *p;
size_t i;
p = malloc(count * size);
if (p == NULL)
return (NULL);
i = 0;
while (i < count * size)
{
p[i] = 0;
i++;
}
return ((void *)(p));
}