summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2015-12-21 21:29:12 -0700
committerKarl Williamson <khw@cpan.org>2015-12-21 22:03:05 -0700
commitca81472c4bd9286992e89c470022cc79c0eb3739 (patch)
tree611951c16601437a1d54633af63063d66f96573a /proto.h
parent5d4cc4974c6e12ccacbb42c5a4936f5c722b9c94 (diff)
downloadperl-ca81472c4bd9286992e89c470022cc79c0eb3739.tar.gz
Deprecate to_utf8_case()
See http://nntp.perl.org/group/perl.perl5.porters/233287
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 9fb3ead580..7d5ea26a8c 100644
--- a/proto.h
+++ b/proto.h
@@ -3341,9 +3341,11 @@ PERL_CALLCONV U32 Perl_to_uni_upper_lc(pTHX_ U32 c)
__attribute__warn_unused_result__
__attribute__pure__;
-PERL_CALLCONV UV Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, const char *normal, const char *special);
+PERL_CALLCONV UV Perl_to_utf8_case(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, const char *normal, const char *special)
+ __attribute__deprecated__;
#define PERL_ARGS_ASSERT_TO_UTF8_CASE \
assert(p); assert(ustrp); assert(swashp); assert(normal)
+
/* PERL_CALLCONV UV Perl_to_utf8_fold(pTHX_ const U8 *p, U8* ustrp, STRLEN *lenp); */
#define PERL_ARGS_ASSERT_TO_UTF8_FOLD \
assert(p); assert(ustrp)