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