-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheap_init.c
34 lines (30 loc) · 1.32 KB
/
heap_init.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
29
30
31
32
33
34
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* heap_init.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mihykim <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/04/10 20:30:56 by mihykim #+# #+# */
/* Updated: 2020/04/10 20:50:42 by mihykim ### ########.fr */
/* */
/* ************************************************************************** */
#include "heap.h"
t_heap *heap_init(unsigned int max_size, int (*cmp)(void *, void *))
{
t_heap *heap;
if (max_size < 1 || cmp == NULL || (heap = malloc(sizeof(t_heap))) == NULL)
return (NULL);
if ((heap->data = malloc(sizeof(void *) * (max_size + 1))) == NULL)
{
free(heap);
return (NULL);
}
heap->max_size = max_size;
heap->size = 0;
heap->cmp = cmp;
return (heap);
}
/*
** line 21 : malloc size 'max_size + 1' instead of 'max_size'
*/