From: Jarkko Hietaniemi Date: Fri, 23 Nov 2001 14:24:08 +0000 (+0000) Subject: Forgotten check-in. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a68a8aba34e0f4387538e8f112fee61bffa705bf;p=p5sagit%2Fp5-mst-13.2.git Forgotten check-in. p4raw-id: //depot/perl@13196 --- diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 79fbc93..9870898 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -2039,17 +2039,6 @@ Recursively unlocks a shared sv. =for hackers Found in file sharedsv.c -=item sortsv - -Sort an array. Here is an example: - - sortsv(AvARRAY(av), av_len(av)+1, Perl_sv_cmp_locale); - - void sortsv(SV ** array, size_t num_elts, SVCOMPARE_t f) - -=for hackers -Found in file pp_ctl.c - =item SP Stack pointer. This is usually handled by C. See C and @@ -2967,22 +2956,22 @@ for a version which guarantees to evaluate sv only once. =for hackers Found in file sv.h -=item SvUVx +=item SvUVX -Coerces the given SV to an unsigned integer and returns it. Guarantees to -evaluate sv only once. Use the more efficient C otherwise. +Returns the raw value in the SV's UV slot, without checks or conversions. +Only use when you are sure SvIOK is true. See also C. - UV SvUVx(SV* sv) + UV SvUVX(SV* sv) =for hackers Found in file sv.h -=item SvUVX +=item SvUVx -Returns the raw value in the SV's UV slot, without checks or conversions. -Only use when you are sure SvIOK is true. See also C. +Coerces the given SV to an unsigned integer and returns it. Guarantees to +evaluate sv only once. Use the more efficient C otherwise. - UV SvUVX(SV* sv) + UV SvUVx(SV* sv) =for hackers Found in file sv.h