summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-09-13 12:43:40 +0200
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2009-09-13 13:01:07 +0200
commit334b0924e9cb80a0a1a60e44bb69faef523ef01c (patch)
tree0f49087141a794cccec8cba850a71e4d54adc830 /utf8.c
parent7a12ca83130de638aaff52760e22216d31cfe4db (diff)
downloadperl-334b0924e9cb80a0a1a60e44bb69faef523ef01c.tar.gz
Remove obsolete functions is_uni_alnumc, is_uni_alnumc_lc, is_utf8_alnumc
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/utf8.c b/utf8.c
index 9a242e0d81..a68af530e7 100644
--- a/utf8.c
+++ b/utf8.c
@@ -1042,14 +1042,6 @@ Perl_is_uni_alnum(pTHX_ UV c)
}
bool
-Perl_is_uni_alnumc(pTHX_ UV c)
-{
- U8 tmpbuf[UTF8_MAXBYTES+1];
- uvchr_to_utf8(tmpbuf, c);
- return is_utf8_alnumc(tmpbuf);
-}
-
-bool
Perl_is_uni_idfirst(pTHX_ UV c)
{
U8 tmpbuf[UTF8_MAXBYTES+1];
@@ -1190,12 +1182,6 @@ Perl_is_uni_alnum_lc(pTHX_ UV c)
}
bool
-Perl_is_uni_alnumc_lc(pTHX_ UV c)
-{
- return is_uni_alnumc(c); /* XXX no locale support yet */
-}
-
-bool
Perl_is_uni_idfirst_lc(pTHX_ UV c)
{
return is_uni_idfirst(c); /* XXX no locale support yet */
@@ -1326,16 +1312,6 @@ Perl_is_utf8_alnum(pTHX_ const U8 *p)
}
bool
-Perl_is_utf8_alnumc(pTHX_ const U8 *p)
-{
- dVAR;
-
- PERL_ARGS_ASSERT_IS_UTF8_ALNUMC;
-
- return is_utf8_common(p, &PL_utf8_alnumc, "IsAlnumC");
-}
-
-bool
Perl_is_utf8_idfirst(pTHX_ const U8 *p) /* The naming is historical. */
{
dVAR;