| 506 | return ret; |
| 507 | } |
| 508 | static inline str *bencode_collapse_str(bencode_item_t *root, str *out) { |
| 509 | out->s = bencode_collapse(root, &out->len); |
| 510 | return out; |
| 511 | } |
| 512 | static inline int bencode_strcmp(bencode_item_t *a, const char *b) { |
| 513 | int len; |
| 514 | if (a->type != BENCODE_STRING) |
nothing calls this directly
no test coverage detected