1 --- atol.3.orig 2007-04-08 18:49:34.000000000 -0700
2 +++ atol.3 2007-04-08 19:21:38.000000000 -0700
17 -.Fn atol "const char *nptr"
18 +.Fn atol "const char *str"
20 -.Fn atoll "const char *nptr"
21 +.Fn atoll "const char *str"
24 +.Fn atol_l "const char *str" "locale_t loc"
26 +.Fn atoll_l "const char *str" "locale_t loc"
30 function converts the initial portion of the string pointed to by
40 -.Dl "strtol(nptr, (char **)NULL, 10);"
41 +.Dl "strtol(str, (char **)NULL, 10);"
45 function converts the initial portion of the string pointed to by
55 -.Dl "strtoll(nptr, (char **)NULL, 10);"
56 +.Dl "strtoll(str, (char **)NULL, 10);"
62 +functions use the current locale, the
66 +functions may be passed locales directly. See
68 +for more information.