summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-03-25 08:43:31 -0600
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-03-25 21:02:04 +0000
commit73d840c0daa603a18a29260159881d4ef6772d73 (patch)
treeb5e129b2bb73cff2818caf0fa6c7f60ce32a2635 /pod
parentcacf81f42beab47944769821db143b4be96edd5d (diff)
downloadperl-73d840c0daa603a18a29260159881d4ef6772d73.tar.gz
Consting part 4
Message-ID: <20050325204331.GA16388@petdance.com> p4raw-id: //depot/perl@24079
Diffstat (limited to 'pod')
-rw-r--r--pod/perlapi.pod8
1 files changed, 5 insertions, 3 deletions
diff --git a/pod/perlapi.pod b/pod/perlapi.pod
index a915892a01..a724f3eb4d 100644
--- a/pod/perlapi.pod
+++ b/pod/perlapi.pod
@@ -2139,7 +2139,7 @@ Found in file numeric.c
For backwards compatibility. Use C<grok_bin> instead.
- NV scan_bin(char* start, STRLEN len, STRLEN* retlen)
+ NV scan_bin(const char* start, STRLEN len, STRLEN* retlen)
=for hackers
Found in file numeric.c
@@ -2148,7 +2148,7 @@ Found in file numeric.c
For backwards compatibility. Use C<grok_hex> instead.
- NV scan_hex(char* start, STRLEN len, STRLEN* retlen)
+ NV scan_hex(const char* start, STRLEN len, STRLEN* retlen)
=for hackers
Found in file numeric.c
@@ -2157,7 +2157,7 @@ Found in file numeric.c
For backwards compatibility. Use C<grok_oct> instead.
- NV scan_oct(char* start, STRLEN len, STRLEN* retlen)
+ NV scan_oct(const char* start, STRLEN len, STRLEN* retlen)
=for hackers
Found in file numeric.c
@@ -5097,6 +5097,8 @@ missing (NULL). When running with taint checks enabled, indicates via
C<maybe_tainted> if results are untrustworthy (often due to the use of
locales).
+XXX Except that it maybe_tainted is never assigned to.
+
Usually used via one of its frontends C<sv_vcatpvf> and C<sv_vcatpvf_mg>.
void sv_vcatpvfn(SV* sv, const char* pat, STRLEN patlen, va_list* args, SV** svargs, I32 svmax, bool *maybe_tainted)