diff options
author | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2010-02-20 15:33:05 +0100 |
---|---|---|
committer | Marcus Holland-Moritz <mhx-perl@gmx.net> | 2010-02-20 15:33:05 +0100 |
commit | cca4e9fab7291545636e94a7bf2f606ae7526371 (patch) | |
tree | 82113fd65221374d9efbab2b421301a7d1add1a4 /hv.h | |
parent | 875c5bf420d83b47bd33ced9c2f3b2f75cd6ee29 (diff) | |
download | perl-cca4e9fab7291545636e94a7bf2f606ae7526371.tar.gz |
Fix apidoc for HeUTF8()
HeUTF8() onlu takes one argument.
Diffstat (limited to 'hv.h')
-rw-r--r-- | hv.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -206,7 +206,7 @@ If you are using C<HePV> to get values to pass to C<newSVpvn()> to create a new SV, you should consider using C<newSVhek(HeKEY_hek(he))> as it is more efficient. -=for apidoc Am|char*|HeUTF8|HE* he|STRLEN len +=for apidoc Am|char*|HeUTF8|HE* he Returns whether the C<char *> value returned by C<HePV> is encoded in UTF-8, doing any necessary dereferencing of possibly C<SV*> keys. The value returned will be 0 or non-0, not necessarily 1 (or even a value with any low bits set), |