summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utf8.c b/utf8.c
index 53983cbeae..5a80bfdca0 100644
--- a/utf8.c
+++ b/utf8.c
@@ -246,7 +246,7 @@ Perl_is_utf8_char(pTHX_ const U8 *s)
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);
}
/*
@@ -285,7 +285,7 @@ Perl_is_utf8_string(pTHX_ const U8 *s, STRLEN 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