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); }