71
73
static const char hexit[]= { '0', '1', '2', '3', '4', '5', '6', '7',
72
74
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
73
75
string::const_iterator src_iter;
75
77
for (src_iter= src.begin(); src_iter < src.end(); ++src_iter)
77
79
if (static_cast<unsigned char>(*src_iter) > 0x7f)