- or download this
/* encoding */
//// ...
...
ddone += dlen + enc->replen;
sv_catpvn(dst, (char*)enc->rep, enc->replen);
}
- or download this
/* decoding */
//// ...
...
ddone += dlen + strlen(FBCHAR_UTF8);
sv_catpv(dst, FBCHAR_UTF8);
}
- or download this
malformed:
//// ...
...
} else {
sv_catpv(dst, FBCHAR_UTF8);
}