| 7 | using namespace std; |
| 8 | |
| 9 | inline void pprint_bytes(const char* label, unsigned char* bytes, int len, |
| 10 | ostream& out = cout) |
| 11 | { |
| 12 | out << label << ": "; |
| 13 | for (int j = 0; j < len; j++) |
| 14 | out << setfill('0') << setw(2) << hex << (int) bytes[j]; |
| 15 | out << dec << endl; |
| 16 | } |
| 17 | |
| 18 | #endif |
no outgoing calls
no test coverage detected