-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memalloc.c
18 lines (16 loc) · 977 Bytes
/
ft_memalloc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memalloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: stales <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/18 12:06:46 by stales #+# #+# */
/* Updated: 2022/03/31 11:06:48 by stales ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memalloc(t_size size)
{
return (ft_calloc(1, size));
}