summaryrefslogtreecommitdiff
path: root/rushs/tinyprintf/heap/del.c
blob: 4d2ae358d11a5b2d0d69d56333b52ffed18a6b00 (plain)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>

#include "heap.h"

void delete_heap(struct heap *heap)
{
    free(heap->array);
    free(heap);
}