-
Notifications
You must be signed in to change notification settings - Fork 0
/
ft_memalloc.c
26 lines (23 loc) · 1.04 KB
/
ft_memalloc.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memalloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ewilliam <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/12/02 09:42:14 by ewilliam #+# #+# */
/* Updated: 2016/12/05 21:46:16 by ewilliam ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memalloc(size_t size)
{
void *ptr;
ptr = malloc(sizeof(size_t) * size);
if (ptr)
{
ft_bzero(ptr, size);
return (ptr);
}
return (NULL);
}