summaryrefslogtreecommitdiff
path: root/proto.h
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 /proto.h
parent7a12ca83130de638aaff52760e22216d31cfe4db (diff)
downloadperl-334b0924e9cb80a0a1a60e44bb69faef523ef01c.tar.gz
Remove obsolete functions is_uni_alnumc, is_uni_alnumc_lc, is_utf8_alnumc
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/proto.h b/proto.h
index 724a347710..6c7498eed6 100644
--- a/proto.h
+++ b/proto.h
@@ -1160,10 +1160,6 @@ PERL_CALLCONV bool Perl_is_uni_alnum(pTHX_ UV c)
__attribute__warn_unused_result__
__attribute__pure__;
-PERL_CALLCONV bool Perl_is_uni_alnumc(pTHX_ UV c)
- __attribute__warn_unused_result__
- __attribute__pure__;
-
PERL_CALLCONV bool Perl_is_uni_idfirst(pTHX_ UV c)
__attribute__warn_unused_result__
__attribute__pure__;
@@ -1240,10 +1236,6 @@ PERL_CALLCONV bool Perl_is_uni_alnum_lc(pTHX_ UV c)
__attribute__warn_unused_result__
__attribute__pure__;
-PERL_CALLCONV bool Perl_is_uni_alnumc_lc(pTHX_ UV c)
- __attribute__warn_unused_result__
- __attribute__pure__;
-
PERL_CALLCONV bool Perl_is_uni_idfirst_lc(pTHX_ UV c)
__attribute__warn_unused_result__
__attribute__pure__;
@@ -1323,12 +1315,6 @@ PERL_CALLCONV bool Perl_is_utf8_alnum(pTHX_ const U8 *p)
#define PERL_ARGS_ASSERT_IS_UTF8_ALNUM \
assert(p)
-PERL_CALLCONV bool Perl_is_utf8_alnumc(pTHX_ const U8 *p)
- __attribute__warn_unused_result__
- __attribute__nonnull__(pTHX_1);
-#define PERL_ARGS_ASSERT_IS_UTF8_ALNUMC \
- assert(p)
-
PERL_CALLCONV bool Perl_is_utf8_idfirst(pTHX_ const U8 *p)
__attribute__warn_unused_result__
__attribute__nonnull__(pTHX_1);