X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/cc6b73957505a73b130c87add7bf3d534f129041..deb3007b1732b70253d84d2509424233377af1e9:/pod/perlguts.pod diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 4806815..1aea1d8 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -42,9 +42,10 @@ The five routines are: SV* newSVpvf(const char*, ...); SV* newSVsv(SV*); -To change the value of an *already-existing* SV, there are six routines: +To change the value of an *already-existing* SV, there are seven routines: void sv_setiv(SV*, IV); + void sv_setuv(SV*, UV); void sv_setnv(SV*, double); void sv_setpv(SV*, char*); void sv_setpvn(SV*, char*, int)