MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / Heap_print

Function Heap_print

src/util/heap.c:363–371  ·  view source on GitHub ↗

prints heap

Source from the content-addressed store, hash-verified

361
362// prints heap
363void 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
374void Heap_free

Callers

nothing calls this directly

Calls 2

Heap_countFunction · 0.85
_Heap_printFunction · 0.85

Tested by

no test coverage detected