-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memalloc.c
28 lines (25 loc) · 1.09 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
27
28
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memalloc.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: aliwang <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/16 08:16:41 by aliwang #+# #+# */
/* Updated: 2019/02/16 08:19:22 by aliwang ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memalloc(size_t size)
{
unsigned char *ptr;
ptr = NULL;
if (size)
{
if (!(ptr = (unsigned char *)malloc(size)))
return (NULL);
while (size)
ptr[--size] = 0;
}
return ((void *)ptr);
}