summaryrefslogtreecommitdiff
path: root/sv.h
diff options
context:
space:
mode:
authorMarcus Holland-Moritz <mhx-perl@gmx.net>2004-08-04 18:29:23 +0000
committerMarcus Holland-Moritz <mhx-perl@gmx.net>2004-08-04 18:29:23 +0000
commit0f76ff59727b0fa5128e3888186cfa355dc6891d (patch)
treec47a4030fd58cb6741353cb96fe903adf9e49de9 /sv.h
parent7b8efacbb1727e113e4959cbe88921d459f35f43 (diff)
downloadperl-0f76ff59727b0fa5128e3888186cfa355dc6891d.tar.gz
Document sv_catpvn_nomg, sv_setsv_nomg and sv_catsv_nomg.
p4raw-id: //depot/perl@23196
Diffstat (limited to 'sv.h')
-rw-r--r--sv.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/sv.h b/sv.h
index f05df1c4a1..9b0f0702c8 100644
--- a/sv.h
+++ b/sv.h
@@ -957,6 +957,15 @@ COW)
Returns a boolean indicating whether the SV is Copy-On-Write shared hash key
scalar.
+=for apidoc Am|void|sv_catpvn_nomg|SV* sv|const char* ptr|STRLEN len
+Like C<sv_catpvn> but doesn't process magic.
+
+=for apidoc Am|void|sv_setsv_nomg|SV* dsv|SV* ssv
+Like C<sv_setsv> but doesn't process magic.
+
+=for apidoc Am|void|sv_catsv_nomg|SV* dsv|SV* ssv
+Like C<sv_catsv> but doesn't process magic.
+
=cut
*/