| 38 | } |
| 39 | |
| 40 | static enum hc_order memo_cmp(const void *l, const void *r) { |
| 41 | return hc_cmp(*(size_t *)l, *(size_t *)r); |
| 42 | } |
| 43 | |
| 44 | static const void *memo_key(const void *p) { |
| 45 | struct memo *m = *(struct memo **)p; |
nothing calls this directly
no outgoing calls
no test coverage detected