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

Function __swap

src/util/heap.c:43–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41}
42
43static void __swap
44(
45 heap_t *hp,
46 const int i1,
47 const int i2
48) {
49 void *tmp = hp->array[i1];
50
51 hp->array[i1] = hp->array[i2];
52 hp->array[i2] = tmp;
53}
54
55static int __pushup
56(

Callers 2

__pushupFunction · 0.85
__pushdownFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected