data_structures
src
data_structures
min_pq
min_pq_delete.c
Go to the documentation of this file.
1
/* ************************************************************************** */
3
/* */
4
/* ::: :::::::: */
5
/* min_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 14:05:02 by unite ### ########.fr */
11
/* */
12
/* ************************************************************************** */
13
14
#include "
min_pq.h
"
15
16
void
min_pq_delete
(
t_min_pq
*pq)
17
{
18
array_delete
(pq);
19
}
min_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
min_pq_delete
void min_pq_delete(t_min_pq *pq)
Deletes this queue and free all its items and the associated data.
Definition:
min_pq_delete.c:16
Generated by
1.8.16