summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2021-06-26 21:09:24 -0600
committerKarl Williamson <khw@cpan.org>2021-08-07 05:14:43 -0600
commitba8e516ec8ffca4777b4e23361464ccdbec0e9ff (patch)
treecd7e2267fad03be85ca7ad42105104f487068bba /utf8.c
parent222d763053ff7a4e671c2a51ec02d9ec9ac7fff9 (diff)
downloadperl-ba8e516ec8ffca4777b4e23361464ccdbec0e9ff.tar.gz
utf8.c: Change name of static function
This changes only portions of the capitalization, and the new version is more in keeping with other function names.
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 3e4215b8a5..c7f3c58ade 100644
--- a/utf8.c
+++ b/utf8.c
@@ -754,11 +754,11 @@ S_is_utf8_overlong_given_start_byte_ok(const U8 * const s, const STRLEN len)
}
/* Check for the FF overlong */
- return isFF_OVERLONG(s, len);
+ return isFF_overlong(s, len);
}
PERL_STATIC_INLINE int
-S_isFF_OVERLONG(const U8 * const s, const STRLEN len)
+S_isFF_overlong(const U8 * const s, const STRLEN len)
{
/* Returns an int indicating whether or not the UTF-8 sequence from 's' to
* 'e' - 1 is an overlong beginning with \xFF. It returns 1 if it is; 0 if