summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-08 11:50:30 -0600
committerKarl Williamson <khw@cpan.org>2022-05-08 11:54:55 -0600
commitfe4090f045c7e4b139bde18c0e12a0ea551d7e8e (patch)
tree85ea4d414b499f5124628079f7f14ace91062516 /mathoms.c
parent824d5263b193d12ca422e1f5b008d5ed97a57856 (diff)
downloadperl-fe4090f045c7e4b139bde18c0e12a0ea551d7e8e.tar.gz
perlapi: Consolidate sv_usepvn(_flags)? entries
Diffstat (limited to 'mathoms.c')
-rw-r--r--mathoms.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/mathoms.c b/mathoms.c
index 4da5bbb83c..d26284019e 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -784,15 +784,6 @@ Perl_save_list(pTHX_ SV **sarg, I32 maxsarg)
}
}
-/*
-=for apidoc_section $SV
-=for apidoc sv_usepvn_mg
-
-Like C<sv_usepvn>, but also handles 'set' magic.
-
-=cut
-*/
-
void
Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len)
{
@@ -801,16 +792,6 @@ Perl_sv_usepvn_mg(pTHX_ SV *sv, char *ptr, STRLEN len)
sv_usepvn_flags(sv,ptr,len, SV_SMAGIC);
}
-/*
-=for apidoc_section $SV
-=for apidoc sv_usepvn
-
-Tells an SV to use C<ptr> to find its string value. Implemented by
-calling C<sv_usepvn_flags> with C<flags> of 0, hence does not handle 'set'
-magic. See C<L</sv_usepvn_flags>>.
-
-=cut
-*/
void
Perl_sv_usepvn(pTHX_ SV *sv, char *ptr, STRLEN len)