Check if src at position p starts with literal str of known length. */
| 90 | |
| 91 | /* Check if src at position p starts with literal str of known length. */ |
| 92 | static bool at_prefix(const char *p, const char *end, const char *prefix, int prefix_len) { |
| 93 | return p + prefix_len <= end && memcmp(p, prefix, (size_t)prefix_len) == 0; |
| 94 | } |
| 95 | |
| 96 | /* ── Per-worker collection ─────────────────────────────────────── */ |
| 97 |
no outgoing calls
no test coverage detected