| 47 | } |
| 48 | |
| 49 | void PrintASCII(const uint8_t *Data, size_t Size, const char *PrintAfter) { |
| 50 | for (size_t i = 0; i < Size; i++) |
| 51 | PrintASCIIByte(Data[i]); |
| 52 | Printf("%s", PrintAfter); |
| 53 | } |
| 54 | |
| 55 | void PrintASCII(const Unit &U, const char *PrintAfter) { |
| 56 | PrintASCII(U.data(), U.size(), PrintAfter); |