| 86 | } |
| 87 | |
| 88 | static void write_byte(std::vector<bool>& bits, unsigned& cursor, uint8_t b) |
| 89 | { |
| 90 | write_bits(bits, cursor, encode_data_gcr(b >> 4), 5); |
| 91 | write_bits(bits, cursor, encode_data_gcr(b), 5); |
| 92 | } |
| 93 | |
| 94 | static void write_bytes( |
| 95 | std::vector<bool>& bits, unsigned& cursor, const Bytes& bytes) |
no test coverage detected