diff options
author | Karl Williamson <khw@cpan.org> | 2015-12-21 21:29:12 -0700 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-12-21 22:03:05 -0700 |
commit | ca81472c4bd9286992e89c470022cc79c0eb3739 (patch) | |
tree | 611951c16601437a1d54633af63063d66f96573a /proto.h | |
parent | 5d4cc4974c6e12ccacbb42c5a4936f5c722b9c94 (diff) | |
download | perl-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.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |