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