| 99 | } |
| 100 | |
| 101 | static void write_gap(std::vector<bool>& bits, unsigned& cursor, int length) |
| 102 | { |
| 103 | for (int i = 0; i < length / 10; i++) |
| 104 | write_byte(bits, cursor, '0'); |
| 105 | } |
| 106 | |
| 107 | static void write_sector(std::vector<bool>& bits, |
| 108 | unsigned& cursor, |
no test coverage detected