| 332 | unsigned append(const char *p, unsigned l); |
| 333 | #if __cplusplus >= 201703L |
| 334 | inline unsigned append(std::string_view s) { |
| 335 | return append(s.data(), s.length()); |
| 336 | } |
| 337 | #endif // __cplusplus >= 201703L |
| 338 | void copy_in(unsigned o, unsigned l, const char *src, bool crc_reset = true); |
| 339 | void zero(bool crc_reset = true); |
no test coverage detected