diff options
-rw-r--r-- | global.sym | 1 | ||||
-rw-r--r-- | pod/perlapi.pod | 14 |
2 files changed, 8 insertions, 7 deletions
diff --git a/global.sym b/global.sym index 2143319d85..c5e527b9bd 100644 --- a/global.sym +++ b/global.sym @@ -461,6 +461,7 @@ Perl_unlock_condpair Perl_unsharepvn Perl_utf16_to_utf8 Perl_utf16_to_utf8_reversed +Perl_utf8_length Perl_utf8_distance Perl_utf8_hop Perl_utf8_to_bytes diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 061f403445..7a93dea82b 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2368,19 +2368,19 @@ false, defined or undefined. Does not handle 'get' magic. =for hackers Found in file sv.h -=item SvTYPE - -Returns the type of the SV. See C<svtype>. +=item svtype - svtype SvTYPE(SV* sv) +An enum of flags for Perl types. These are found in the file B<sv.h> +in the C<svtype> enum. Test these flags with the C<SvTYPE> macro. =for hackers Found in file sv.h -=item svtype +=item SvTYPE -An enum of flags for Perl types. These are found in the file B<sv.h> -in the C<svtype> enum. Test these flags with the C<SvTYPE> macro. +Returns the type of the SV. See C<svtype>. + + svtype SvTYPE(SV* sv) =for hackers Found in file sv.h |