diff options
Diffstat (limited to 'pod/perlhacktips.pod')
-rw-r--r-- | pod/perlhacktips.pod | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/pod/perlhacktips.pod b/pod/perlhacktips.pod index 1d8aa1975c..3d477da89e 100644 --- a/pod/perlhacktips.pod +++ b/pod/perlhacktips.pod @@ -629,7 +629,15 @@ Do not use atoi() Use grok_atou() instead. atoi() has ill-defined behavior on overflows, and cannot be used for incremental parsing. It is also affected by locale, -which can be construed as a bug. +which is bad. + +=item * + +Do not use strtol() or strtoul() + +Use grok_atou() instead. strtol() or strtoul() (or their IV/UV-friendly +macro disguises, Strtol() and Strtoul(), or Atol() and Atoul() are +affected by locale, which is bad. =back |