diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-02-26 11:26:09 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-08-29 09:55:57 -0600 |
commit | a27992ccf5d1a0c50667fb21ba8ca973f50a7508 (patch) | |
tree | d46f3decc3740faf72438cb40bae33720f66defc /proto.h | |
parent | 4f83cdcd5c1f4154a1ecc18f39f9e5c3f21bc4b3 (diff) | |
download | perl-a27992ccf5d1a0c50667fb21ba8ca973f50a7508.tar.gz |
Convert uvuni_to_utf8() to function
Code should almost never be dealing with non-native code points
This is in preparation for later deprecation when our CPAN modules have
been converted away from using it.
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4777,8 +4777,8 @@ PERL_CALLCONV U8* Perl_uvchr_to_utf8_flags(pTHX_ U8 *d, UV uv, UV flags) #define PERL_ARGS_ASSERT_UVCHR_TO_UTF8_FLAGS \ assert(d) -/* PERL_CALLCONV U8* Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) - __attribute__nonnull__(pTHX_1); */ +PERL_CALLCONV U8* Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv) + __attribute__nonnull__(pTHX_1); #define PERL_ARGS_ASSERT_UVUNI_TO_UTF8 \ assert(d) |