From: Tim Jenness Date: Sat, 27 Oct 2001 15:27:41 +0000 (-1000) Subject: sv.h documentation X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b70b15d2d499beb343401898be8197f5b568dea9;p=p5sagit%2Fp5-mst-13.2.git sv.h documentation Message-ID: p4raw-id: //depot/perl@12720 --- diff --git a/sv.h b/sv.h index 039c22f..0c9442a 100644 --- a/sv.h +++ b/sv.h @@ -878,13 +878,13 @@ Returns a boolean indicating whether Perl would evaluate the SV as true or false, defined or undefined. Does not handle 'get' magic. =for apidoc Am|char*|SvPVutf8_force|SV* sv|STRLEN len -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. =for apidoc Am|char*|SvPVutf8|SV* sv|STRLEN len -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. -=for apidoc Am|char*|SvPVutf8_nolen|SV* sv|STRLEN len -Like C, but converts sv to uft8 first if necessary. +=for apidoc Am|char*|SvPVutf8_nolen|SV* sv +Like C, but converts sv to utf8 first if necessary. =for apidoc Am|char*|SvPVbyte_force|SV* sv|STRLEN len Like C, but converts sv to byte representation first if necessary. @@ -892,16 +892,16 @@ Like C, but converts sv to byte representation first if necessary. =for apidoc Am|char*|SvPVbyte|SV* sv|STRLEN len Like C, but converts sv to byte representation first if necessary. -=for apidoc Am|char*|SvPVbyte_nolen|SV* sv|STRLEN len +=for apidoc Am|char*|SvPVbyte_nolen|SV* sv Like C, but converts sv to byte representation first if necessary. =for apidoc Am|char*|SvPVutf8x_force|SV* sv|STRLEN len -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. Guarantees to evalute sv only once; use the more efficient C otherwise. =for apidoc Am|char*|SvPVutf8x|SV* sv|STRLEN len -Like C, but converts sv to uft8 first if necessary. +Like C, but converts sv to utf8 first if necessary. Guarantees to evalute sv only once; use the more efficient C otherwise.