diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-08-04 18:29:23 +0000 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2004-08-04 18:29:23 +0000 |
commit | 0f76ff59727b0fa5128e3888186cfa355dc6891d (patch) | |
tree | c47a4030fd58cb6741353cb96fe903adf9e49de9 /pod | |
parent | 7b8efacbb1727e113e4959cbe88921d459f35f43 (diff) | |
download | perl-0f76ff59727b0fa5128e3888186cfa355dc6891d.tar.gz |
Document sv_catpvn_nomg, sv_setsv_nomg and sv_catsv_nomg.
p4raw-id: //depot/perl@23196
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 80ee35bc8e..36c5030951 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -3978,6 +3978,15 @@ Like C<sv_catpvn>, but also handles 'set' magic. =for hackers Found in file sv.c +=item sv_catpvn_nomg + +Like C<sv_catpvn> but doesn't process magic. + + void sv_catpvn_nomg(SV* sv, const char* ptr, STRLEN len) + +=for hackers +Found in file sv.h + =item sv_catpv_mg Like C<sv_catpv>, but also handles 'set' magic. @@ -4019,6 +4028,15 @@ Like C<sv_catsv>, but also handles 'set' magic. =for hackers Found in file sv.c +=item sv_catsv_nomg + +Like C<sv_catsv> but doesn't process magic. + + void sv_catsv_nomg(SV* dsv, SV* ssv) + +=for hackers +Found in file sv.h + =item sv_chop Efficient removal of characters from the beginning of the string buffer. @@ -4762,6 +4780,15 @@ Like C<sv_setsv>, but also handles 'set' magic. =for hackers Found in file sv.c +=item sv_setsv_nomg + +Like C<sv_setsv> but doesn't process magic. + + void sv_setsv_nomg(SV* dsv, SV* ssv) + +=for hackers +Found in file sv.h + =item sv_setuv Copies an unsigned integer into the given SV, upgrading first if necessary. |