diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-02-26 11:02:33 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-29 09:55:57 -0600 |
commit | 4f83cdcd5c1f4154a1ecc18f39f9e5c3f21bc4b3 (patch) | |
tree | 2cfb559f611fb57257b30fde275e0e11f4fb0fd9 /proto.h | |
parent | 5495102afe3b4589647ff274c9692632113ce6f4 (diff) | |
download | perl-4f83cdcd5c1f4154a1ecc18f39f9e5c3f21bc4b3.tar.gz |
Deprecate utf8_to_uni_buf()
Now that the tables are stored in native order, there is almost no need
for code to be dealing in Unicode order.
According to grep.cpan.me, there are no uses of this function in CPAN.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4761,6 +4761,7 @@ PERL_CALLCONV UV Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen) assert(s) PERL_CALLCONV UV Perl_utf8_to_uvuni_buf(pTHX_ const U8 *s, const U8 *send, STRLEN *retlen) + __attribute__deprecated__ __attribute__nonnull__(pTHX_1) __attribute__nonnull__(pTHX_2); #define PERL_ARGS_ASSERT_UTF8_TO_UVUNI_BUF \ |