17 os << std::hex << std::setfill(
'0') <<
"0x" << std::setw(8) << word;
21 void bil::printHex(std::ostream& os,
const boost::uint32_t* words,
size_t wordCount)
25 os << std::hex << std::setfill(
'0');
26 for (
size_t i = 0; i < wordCount; ++i)
28 os <<
"0x" << std::setw(8) << *words++;
29 if ((i+1) < wordCount) os <<
" ";