Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion embed.fnc
Original file line number Diff line number Diff line change
Expand Up @@ -3890,7 +3890,7 @@ Admp |U8 * |uv_to_utf8_msgs|NN U8 *d \
|UV uv \
|UV flags \
|NULLOK HV **msgs
CDbp |U8 * |uvuni_to_utf8 |NN U8 *d \
ADbdp |U8 * |uvuni_to_utf8 |NN U8 *d \
|UV uv
EXdpx |bool |validate_proto |NN SV *name \
|NULLOK SV *proto \
Expand Down
9 changes: 9 additions & 0 deletions mathoms.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,15 @@ Perl_utf8_to_uvuni(pTHX_ const U8 *s, STRLEN *retlen)
return NATIVE_TO_UNI(valid_utf8_to_uvchr(s, retlen));
}

/*
=for apidoc_section $unicode
=for apidoc uvuni_to_utf8

Instead use L<perlapi/uv_to_utf8>.

=cut
*/

U8 *
Perl_uvuni_to_utf8(pTHX_ U8 *d, UV uv)
{
Expand Down
Loading