| 120 | /* ── Helpers ─────────────────────────────────────────────────────── */ |
| 121 | |
| 122 | static char *heap_strdup(const char *s) { |
| 123 | return s ? strdup(s) : strdup("{}"); |
| 124 | } |
| 125 | |
| 126 | /* Intern a repetitive string into the buffer's pool: identical content collapses |
| 127 | * to a single heap copy owned by the pool. NULL maps to "{}" (matches |
no outgoing calls
no test coverage detected