| 94 | |
| 95 | } |
| 96 | int readByteWithInfinity(std::vector<uint8_t> const& data, int& pos) |
| 97 | { |
| 98 | return convertByteToByteWithInfinity(readByte(data, pos)); |
| 99 | } |
| 100 | bool readBool(std::vector<uint8_t> const& data, int& pos) |
| 101 | { |
| 102 | return static_cast<int8_t>(readByte(data, pos)) > 0; |
no test coverage detected