-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_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: tyeung <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/09/23 21:53:36 by tyeung #+# #+# */
/* Updated: 2019/09/23 21:53:43 by tyeung ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdlib.h>
#include "libft.h"
void *ft_memalloc(size_t size)
{
void *out;
if (!(out = malloc(size)))
{
return (NULL);
}
ft_bzero(out, size);
return (out);
}