diff options
author | Steve Hay <SteveHay@planit.com> | 2004-02-06 12:44:05 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-02-08 11:48:09 +0000 |
commit | 12fa07dffe20be11e9d779f98ee2eac72af90827 (patch) | |
tree | e814161b723e8ae2f3881e312d5a0f1a5028f0c0 /sv.h | |
parent | cac3fadd5244efab88a7d39b605730c92b4ac22c (diff) | |
download | perl-12fa07dffe20be11e9d779f98ee2eac72af90827.tar.gz |
Correct some prototypes in perlapi.pod
Message-ID: <40238C15.2090200@uk.radan.com>
p4raw-id: //depot/perl@22286
Diffstat (limited to 'sv.h')
-rw-r--r-- | sv.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -432,13 +432,13 @@ Tells an SV that it is an integer and disables all other OK bits. =for apidoc Am|void|SvIOK_only_UV|SV* sv Tells and SV that it is an unsigned integer and disables all other OK bits. -=for apidoc Am|void|SvIOK_UV|SV* sv +=for apidoc Am|bool|SvIOK_UV|SV* sv Returns a boolean indicating whether the SV contains an unsigned integer. =for apidoc Am|void|SvUOK|SV* sv Returns a boolean indicating whether the SV contains an unsigned integer. -=for apidoc Am|void|SvIOK_notUV|SV* sv +=for apidoc Am|bool|SvIOK_notUV|SV* sv Returns a boolean indicating whether the SV contains a signed integer. =for apidoc Am|bool|SvNOK|SV* sv @@ -581,7 +581,7 @@ Set the length of the string which is in the SV. See C<SvCUR>. SvFLAGS(sv) |= (SVf_NOK|SVp_NOK)) /* -=for apidoc Am|void|SvUTF8|SV* sv +=for apidoc Am|bool|SvUTF8|SV* sv Returns a boolean indicating whether the SV contains UTF-8 encoded data. =for apidoc Am|void|SvUTF8_on|SV *sv |