if (checksum) {
while (len-- > 0 && s < strend) {
STRLEN alen;
- auint = UNI_TO_NATIVE(utf8n_to_uvchr((U8*)s, strend - s, &alen, 0));
+ auint = NATIVE_TO_UNI(utf8n_to_uvchr((U8*)s, strend - s, &alen, 0));
along = alen;
s += along;
if (checksum > bits_in_uv)
EXTEND_MORTAL(len);
while (len-- > 0 && s < strend) {
STRLEN alen;
- auint = UNI_TO_NATIVE(utf8n_to_uvchr((U8*)s, strend - s, &alen, 0));
+ auint = NATIVE_TO_UNI(utf8n_to_uvchr((U8*)s, strend - s, &alen, 0));
along = alen;
s += along;
sv = NEWSV(37, 0);
case 'U':
while (len-- > 0) {
fromstr = NEXTFROM;
- auint = NATIVE_TO_UNI(SvUV(fromstr));
+ auint = UNI_TO_NATIVE(SvUV(fromstr));
SvGROW(cat, SvCUR(cat) + UTF8_MAXLEN + 1);
SvCUR_set(cat, (char*)uvchr_to_utf8((U8*)SvEND(cat),auint)
- SvPVX(cat));
if (ord('A') == 193)
{
printf "#%vx for 0xFF\n",$a;
- print "not " unless $a eq "\x80\x45" && length($a) == 2;
+ print "not " unless $a eq "\x8b\x73" && length($a) == 2;
}
else
{