| 332 | h2_iq_cmp *cmp, void *ctx); |
| 333 | |
| 334 | h2_iqueue *h2_iq_create(apr_pool_t *pool, int capacity) |
| 335 | { |
| 336 | h2_iqueue *q = apr_pcalloc(pool, sizeof(h2_iqueue)); |
| 337 | q->pool = pool; |
| 338 | iq_grow(q, capacity); |
| 339 | q->nelts = 0; |
| 340 | return q; |
| 341 | } |
| 342 | |
| 343 | int h2_iq_empty(h2_iqueue *q) |
| 344 | { |
no test coverage detected