From: Jarkko Hietaniemi Date: Sun, 21 Oct 2001 22:21:55 +0000 (+0000) Subject: Integrate from perlio; restructuring. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e37d999d5d8d7813609fe4692c950edc7be3f67d;p=p5sagit%2Fp5-mst-13.2.git Integrate from perlio; restructuring. p4raw-id: //depot/perl@12554 --- e37d999d5d8d7813609fe4692c950edc7be3f67d diff --cc pod/perlapi.pod index 6665191,75defb8..6a23c14 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@@ -2606,21 -2606,21 +2606,21 @@@ Like C, but converts sv to =for hackers Found in file sv.h --=item SvPVX ++=item SvPVx --Returns a pointer to the physical string in the SV. The SV must contain a --string. ++A version of C which guarantees to evaluate sv only once. -- char* SvPVX(SV* sv) ++ char* SvPVx(SV* sv, STRLEN len) =for hackers Found in file sv.h --=item SvPVx ++=item SvPVX --A version of C which guarantees to evaluate sv only once. ++Returns a pointer to the physical string in the SV. The SV must contain a ++string. -- char* SvPVx(SV* sv, STRLEN len) ++ char* SvPVX(SV* sv) =for hackers Found in file sv.h @@@ -2827,19 -2827,19 +2827,19 @@@ false, defined or undefined. Does not =for hackers Found in file sv.h --=item svtype ++=item SvTYPE --An enum of flags for Perl types. These are found in the file B --in the C enum. Test these flags with the C macro. ++Returns the type of the SV. See C. ++ ++ svtype SvTYPE(SV* sv) =for hackers Found in file sv.h --=item SvTYPE -- --Returns the type of the SV. See C. ++=item svtype -- svtype SvTYPE(SV* sv) ++An enum of flags for Perl types. These are found in the file B ++in the C enum. Test these flags with the C macro. =for hackers Found in file sv.h