diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-13 12:01:56 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-09-13 12:01:56 +0000 |
commit | cae16f1a7abda22927271673793d2853dfb8f82f (patch) | |
tree | b11e0b0014721c30d8d423c96da6b517c7174463 /pod | |
parent | 3d811634c8589ee2440a7c55255d05afcabf2fc7 (diff) | |
download | perl-cae16f1a7abda22927271673793d2853dfb8f82f.tar.gz |
Regen headers.
p4raw-id: //depot/perl@12009
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlapi.pod | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod index 0c76cff2c4..12abd71714 100644 --- a/pod/perlapi.pod +++ b/pod/perlapi.pod @@ -575,8 +575,9 @@ returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags, and writes the value to I<*result> (or the value is discarded if I<result> is NULL). -The hex number may optinally be prefixed with "0b" or "b". If -C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> on entry then the binary +The hex number may optinally be prefixed with "0b" or "b" unless +C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If +C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the binary number may use '_' characters to separate digits. UV grok_bin(char* start, STRLEN* len, I32* flags, NV *result) @@ -600,8 +601,9 @@ returns UV_MAX, sets C<PERL_SCAN_GREATER_THAN_UV_MAX> in the output flags, and writes the value to I<*result> (or the value is discarded if I<result> is NULL). -The hex number may optinally be prefixed with "0x" or "x". If -C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> on entry then the hex +The hex number may optinally be prefixed with "0x" or "x" unless +C<PERL_SCAN_DISALLOW_PREFIX> is set in I<*flags> on entry. If +C<PERL_SCAN_ALLOW_UNDERSCORES> is set in I<*flags> then the hex number may use '_' characters to separate digits. UV grok_hex(char* start, STRLEN* len, I32* flags, NV *result) |