diff options
author | Tim Jenness <tjenness@cpan.org> | 2001-10-27 05:27:41 -1000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-28 01:30:04 +0000 |
commit | b70b15d2d499beb343401898be8197f5b568dea9 (patch) | |
tree | d2382c21c41c64582dcb4a203971f1a0e14fa57e /sv.h | |
parent | e79607b0950508a0e8362e204fe3f52249eb984f (diff) | |
download | perl-b70b15d2d499beb343401898be8197f5b568dea9.tar.gz |
sv.h documentation
Message-ID: <Pine.LNX.4.33.0110271526270.24647-100000@lapaki>
p4raw-id: //depot/perl@12720
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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<SvPV_force>, but converts sv to uft8 first if necessary. +Like C<SvPV_force>, but converts sv to utf8 first if necessary. =for apidoc Am|char*|SvPVutf8|SV* sv|STRLEN len -Like C<SvPV>, but converts sv to uft8 first if necessary. +Like C<SvPV>, but converts sv to utf8 first if necessary. -=for apidoc Am|char*|SvPVutf8_nolen|SV* sv|STRLEN len -Like C<SvPV_nolen>, but converts sv to uft8 first if necessary. +=for apidoc Am|char*|SvPVutf8_nolen|SV* sv +Like C<SvPV_nolen>, but converts sv to utf8 first if necessary. =for apidoc Am|char*|SvPVbyte_force|SV* sv|STRLEN len Like C<SvPV_force>, but converts sv to byte representation first if necessary. @@ -892,16 +892,16 @@ Like C<SvPV_force>, but converts sv to byte representation first if necessary. =for apidoc Am|char*|SvPVbyte|SV* sv|STRLEN len Like C<SvPV>, 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<SvPV_nolen>, but converts sv to byte representation first if necessary. =for apidoc Am|char*|SvPVutf8x_force|SV* sv|STRLEN len -Like C<SvPV_force>, but converts sv to uft8 first if necessary. +Like C<SvPV_force>, but converts sv to utf8 first if necessary. Guarantees to evalute sv only once; use the more efficient C<SvPVutf8_force> otherwise. =for apidoc Am|char*|SvPVutf8x|SV* sv|STRLEN len -Like C<SvPV>, but converts sv to uft8 first if necessary. +Like C<SvPV>, but converts sv to utf8 first if necessary. Guarantees to evalute sv only once; use the more efficient C<SvPVutf8> otherwise. |