| 40 | #include <iostream> |
| 41 | |
| 42 | void outputByte(std::ostream &os, const char byteVal) { |
| 43 | os << boost::format("0x%02x") % static_cast<const unsigned short>(byteVal); |
| 44 | } |
| 45 | |
| 46 | static const size_t BYTES_PER_LINE = 20; |
| 47 |
no outgoing calls
no test coverage detected