diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-19 21:29:49 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-19 21:29:49 +0000 |
commit | b7ac61fa5d327fda6245237df40413642e6fdb6b (patch) | |
tree | c893d53fb193140830b2a5f72b309d58d15cc513 /utf8.c | |
parent | dc65699314ca1b70eb400580819ad6d85895755d (diff) | |
download | perl-b7ac61fa5d327fda6245237df40413642e6fdb6b.tar.gz |
Some bincompat clawbacks.
p4raw-id: //depot/perl@13813
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -1041,6 +1041,24 @@ Perl_is_uni_xdigit_lc(pTHX_ UV c) return is_uni_xdigit(c); /* XXX no locale support yet */ } +U32 +Perl_to_uni_upper_lc(pTHX_ U32 c) +{ + return to_uni_upper(c); /* XXX no locale support yet */ +} + +U32 +Perl_to_uni_title_lc(pTHX_ U32 c) +{ + return to_uni_title(c); /* XXX no locale support yet */ +} + +U32 +Perl_to_uni_lower_lc(pTHX_ U32 c) +{ + return to_uni_lower(c); /* XXX no locale support yet */ +} + bool Perl_is_utf8_alnum(pTHX_ U8 *p) { |