Skip to content

Commit abaee7c

Browse files
committed
perldelta for SvVSTRING
1 parent 1fb05c6 commit abaee7c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

pod/perldelta.pod

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,17 @@ their appearance in Perl release 5.41.7.
5454
say "All the numbers are even";
5555
}
5656

57+
=head2 New C<SvVSTRING> API macro
58+
59+
A new API macro has been added, which is used to obtain the second string
60+
buffer out of a "vstring" SV, in a manner similar to the C<SvPV> macro which
61+
obtains the regular string buffer out of a regular SV.
62+
63+
STRLEN len;
64+
const char *vstr_pv = SvVSTRING(sv, vstr_len);
65+
66+
See L<perlapi/C<SvVSTRING>>.
67+
5768
=head1 Security
5869

5970
XXX Any security-related notices go here. In particular, any security

0 commit comments

Comments
 (0)