diff options
author | Karl Williamson <khw@cpan.org> | 2015-05-08 21:21:17 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-09-03 23:10:37 -0600 |
commit | 4a4088c46812cbd5bfe69cf9728912de92c28b94 (patch) | |
tree | ff2642d4f0a20b71043c762b42f5f4a5b498033c /sv.h | |
parent | dfcfced87c53cd0e680cd0c19f02f785a2ad6692 (diff) | |
download | perl-4a4088c46812cbd5bfe69cf9728912de92c28b94.tar.gz |
perlapi use 'UTF-8' instead of variants of that
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1575,13 +1575,13 @@ Returns a boolean indicating whether Perl would evaluate the SV as true or false. See C<L</SvOK>> for a defined/undefined test. Does not handle 'get' magic. =for apidoc Am|char*|SvPVutf8_force|SV* sv|STRLEN len -Like C<SvPV_force>, but converts C<sv> to utf8 first if necessary. +Like C<SvPV_force>, but converts C<sv> to UTF-8 first if necessary. =for apidoc Am|char*|SvPVutf8|SV* sv|STRLEN len -Like C<SvPV>, but converts C<sv> to utf8 first if necessary. +Like C<SvPV>, but converts C<sv> to UTF-8 first if necessary. =for apidoc Am|char*|SvPVutf8_nolen|SV* sv -Like C<SvPV_nolen>, but converts C<sv> to utf8 first if necessary. +Like C<SvPV_nolen>, but converts C<sv> to UTF-8 first if necessary. =for apidoc Am|char*|SvPVbyte_force|SV* sv|STRLEN len Like C<SvPV_force>, but converts C<sv> to byte representation first if necessary. @@ -1593,12 +1593,12 @@ Like C<SvPV>, but converts C<sv> to byte representation first if necessary. Like C<SvPV_nolen>, but converts C<sv> to byte representation first if necessary. =for apidoc Am|char*|SvPVutf8x_force|SV* sv|STRLEN len -Like C<SvPV_force>, but converts C<sv> to utf8 first if necessary. +Like C<SvPV_force>, but converts C<sv> to UTF-8 first if necessary. Guarantees to evaluate C<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 C<sv> to utf8 first if necessary. +Like C<SvPV>, but converts C<sv> to UTF-8 first if necessary. Guarantees to evaluate C<sv> only once; use the more efficient C<SvPVutf8> otherwise. |