| 46 | }; |
| 47 | |
| 48 | static enum hc_order env_cmp(const void *x, const void *y) { |
| 49 | return hc_strcmp(*(const char **)x, *(const char **)y); |
| 50 | } |
| 51 | |
| 52 | static const void *env_key(const void *x) { |
| 53 | return &((const struct env_item *)x)->key; |
nothing calls this directly
no test coverage detected