]> git.saurik.com Git - apple/libc.git/blame_incremental - stdlib/FreeBSD/atoi.3.patch
Libc-391.5.22.tar.gz
[apple/libc.git] / stdlib / FreeBSD / atoi.3.patch
... / ...
CommitLineData
1--- atoi.3.orig Fri Mar 11 10:13:22 2005
2+++ atoi.3 Fri Mar 11 10:14:49 2005
3@@ -40,7 +40,8 @@
4 .Dt ATOI 3
5 .Os
6 .Sh NAME
7-.Nm atoi
8+.Nm atoi ,
9+.Nm atoi_l
10 .Nd convert
11 .Tn ASCII
12 string to integer
13@@ -50,6 +51,9 @@
14 .In stdlib.h
15 .Ft int
16 .Fn atoi "const char *nptr"
17+.In xlocale.h
18+.Ft int
19+.Fn atoi_l "const char *nptr" "locale_t loc"
20 .Sh DESCRIPTION
21 The
22 .Fn atoi
23@@ -63,6 +67,14 @@
24 .Bd -literal -offset indent
25 (int)strtol(nptr, (char **)NULL, 10);
26 .Ed
27+.Pp
28+While the
29+.Fn atoi
30+function uses the current locale, the
31+.Fn atoi_l
32+function may be passed a locale directly. See
33+.Xr xlocale 3
34+for more information.
35 .Sh IMPLEMENTATION NOTES
36 The
37 .Fn atoi
38@@ -84,7 +96,8 @@
39 .Xr atol 3 ,
40 .Xr strtod 3 ,
41 .Xr strtol 3 ,
42-.Xr strtoul 3
43+.Xr strtoul 3 ,
44+.Xr xlocale 3
45 .Sh STANDARDS
46 The
47 .Fn atoi