| 7 | }; |
| 8 | |
| 9 | static enum hc_order cmp(const void *x, const void *y) { |
| 10 | return hc_cmp(*(const int *)x, *(const int *)y); |
| 11 | } |
| 12 | |
| 13 | static const void *key(const void *x) { |
| 14 | return &((const struct map_item *)x)->k; |
nothing calls this directly
no outgoing calls
no test coverage detected