prints heap
| 361 | |
| 362 | // prints heap |
| 363 | void Heap_print |
| 364 | ( |
| 365 | const heap_t *hp |
| 366 | ) { |
| 367 | if(Heap_count(hp) == 0) { |
| 368 | return; |
| 369 | } |
| 370 | _Heap_print(hp, 0, 0); |
| 371 | } |
| 372 | |
| 373 | // free heap |
| 374 | void Heap_free |
nothing calls this directly
no test coverage detected