From: Marcus Holland-Moritz Date: Wed, 4 Aug 2004 18:29:23 +0000 (+0000) Subject: Document sv_catpvn_nomg, sv_setsv_nomg and sv_catsv_nomg. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0f76ff59727b0fa5128e3888186cfa355dc6891d;p=p5sagit%2Fp5-mst-13.2.git Document sv_catpvn_nomg, sv_setsv_nomg and sv_catsv_nomg. p4raw-id: //depot/perl@23196 --- diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 80ee35b..36c5030 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -3978,6 +3978,15 @@ Like C, but also handles 'set' magic. =for hackers Found in file sv.c +=item sv_catpvn_nomg + +Like C 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, but also handles 'set' magic. @@ -4019,6 +4028,15 @@ Like C, but also handles 'set' magic. =for hackers Found in file sv.c +=item sv_catsv_nomg + +Like C 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, but also handles 'set' magic. =for hackers Found in file sv.c +=item sv_setsv_nomg + +Like C 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. diff --git a/sv.h b/sv.h index f05df1c..9b0f070 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 but doesn't process magic. + +=for apidoc Am|void|sv_setsv_nomg|SV* dsv|SV* ssv +Like C but doesn't process magic. + +=for apidoc Am|void|sv_catsv_nomg|SV* dsv|SV* ssv +Like C but doesn't process magic. + =cut */