| 478 | } |
| 479 | |
| 480 | static void iq_swap(h2_iqueue *q, int i, int j) |
| 481 | { |
| 482 | int x = q->elts[i]; |
| 483 | q->elts[i] = q->elts[j]; |
| 484 | q->elts[j] = x; |
| 485 | } |
| 486 | |
| 487 | static int iq_bubble_up(h2_iqueue *q, int i, int top, |
| 488 | h2_iq_cmp *cmp, void *ctx) |
no outgoing calls
no test coverage detected