72
69
void bytesToHexdumpFormat(string &to, const unsigned char *from, size_t from_length)
76
72
ostringstream line_number;
82
77
to.append(line_number.str());
89
84
to.push_back(hex_map[(from[x+y]) >> 4]);
90
85
to.push_back(hex_map[(from[x+y]) & 0xF]);