| 229 | } |
| 230 | |
| 231 | inline void Write(const void* buf, size_t size) { |
| 232 | const Bytef* b = (const Bytef*)buf; |
| 233 | const Bytef* e = b + size; |
| 234 | |
| 235 | Y_DEFER { |
| 236 | Z()->next_in = nullptr; |
| 237 | Z()->avail_in = 0; |
| 238 | }; |
| 239 | do { |
| 240 | b = WritePart(b, e); |
| 241 | } while (b < e); |
no outgoing calls
no test coverage detected