data_structures
src
data_structures
max_pq
max_pq_delete.c
Go to the documentation of this file.
1
/* ************************************************************************** */
3
/* */
4
/* ::: :::::::: */
5
/* max_pq_delete.c :+: :+: :+: */
6
/* +:+ +:+ +:+ */
7
/* By: unite <marvin@42.fr> +#+ +:+ +#+ */
8
/* +#+#+#+#+#+ +#+ */
9
/* Created: 2020/07/17 01:53:42 by unite #+# #+# */
10
/* Updated: 2020/07/17 19:17:32 by unite ### ########.fr */
11
/* */
12
/* ************************************************************************** */
13
14
#include "
max_pq.h
"
15
16
void
max_pq_delete
(
t_max_pq
*pq)
17
{
18
array_delete
(pq);
19
}
max_pq.h
s_array
A resizable array.
Definition:
array.h:47
array_delete
void array_delete(t_array *array)
Deletes this array and free all its items and the associated data.
Definition:
array_delete.c:16
max_pq_delete
void max_pq_delete(t_max_pq *pq)
Deletes this queue and free all its items and the associated data.
Definition:
max_pq_delete.c:16
Generated by
1.8.16