Message-Id: <
20050605040904.GA27783@petdance.com>
p4raw-id: //depot/perl@24707
if (len <= 4)
return IS_UTF8_CHAR(s, len) ? len : 0;
#endif /* #ifdef IS_UTF8_CHAR */
- return S_is_utf8_char_slow(s, len);
+ return is_utf8_char_slow(s, len);
}
/*
if (!IS_UTF8_CHAR(x, c))
return FALSE;
} else {
- if (!S_is_utf8_char_slow(x, c))
+ if (!is_utf8_char_slow(x, c))
return FALSE;
}
#else