]> git.saurik.com Git - apple/libc.git/blame - stdlib/strtol.3
Libc-594.9.5.tar.gz
[apple/libc.git] / stdlib / strtol.3
CommitLineData
224c7076
A
1.\" Copyright (c) 1990, 1991, 1993
2.\" The Regents of the University of California. All rights reserved.
3.\"
4.\" This code is derived from software contributed to Berkeley by
5.\" Chris Torek and the American National Standards Committee X3,
6.\" on Information Processing Systems.
7.\"
8.\" Redistribution and use in source and binary forms, with or without
9.\" modification, are permitted provided that the following conditions
10.\" are met:
11.\" 1. Redistributions of source code must retain the above copyright
12.\" notice, this list of conditions and the following disclaimer.
13.\" 2. Redistributions in binary form must reproduce the above copyright
14.\" notice, this list of conditions and the following disclaimer in the
15.\" documentation and/or other materials provided with the distribution.
16.\" 3. All advertising materials mentioning features or use of this software
17.\" must display the following acknowledgement:
18.\" This product includes software developed by the University of
19.\" California, Berkeley and its contributors.
20.\" 4. Neither the name of the University nor the names of its contributors
21.\" may be used to endorse or promote products derived from this software
22.\" without specific prior written permission.
23.\"
24.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34.\" SUCH DAMAGE.
35.\"
36.\" @(#)strtol.3 8.1 (Berkeley) 6/4/93
37.\" $FreeBSD: src/lib/libc/stdlib/strtol.3,v 1.20 2005/01/22 18:02:58 ache Exp $
38.\"
39.Dd November 28, 2001
40.Dt STRTOL 3
41.Os
42.Sh NAME
43.Nm strtoimax ,
44.Nm strtol ,
45.Nm strtoll ,
46.Nm strtoq
47.Nd "convert a string value to a"
48.Vt long , "long long" , intmax_t
49or
50.Vt quad_t
51integer
52.Sh LIBRARY
53.Lb libc
54.Sh SYNOPSIS
55.In inttypes.h
56.Ft intmax_t
57.Fo strtoimax
58.Fa "const char *restrict str"
59.Fa "char **restrict endptr"
60.Fa "int base"
61.Fc
62.In stdlib.h
63.Ft long
64.Fo strtol
65.Fa "const char *restrict str"
66.Fa "char **restrict endptr"
67.Fa "int base"
68.Fc
69.Ft long long
70.Fo strtoll
71.Fa "const char *restrict str"
72.Fa "char **restrict endptr"
73.Fa "int base"
74.Fc
75.In sys/types.h
76.In stdlib.h
77.In limits.h
78.Ft quad_t
79.Fo strtoq
80.Fa "const char *str"
81.Fa "char **endptr"
82.Fa "int base"
83.Fc
84.Sh DESCRIPTION
85The
86.Fn strtol
87function
88converts the string in
89.Fa str
90to a
91.Vt long
92value.
93The
94.Fn strtoll
95function
96converts the string in
97.Fa str
98to a
99.Vt "long long"
100value.
101The
102.Fn strtoimax
103function
104converts the string in
105.Fa str
106to an
107.Vt intmax_t
108value.
109The
110.Fn strtoq
111function
112converts the string in
113.Fa str
114to a
115.Vt quad_t
116value.
117The conversion is done according to the given
118.Fa base ,
119which must be between 2 and 36 inclusive,
120or be the special value 0.
121.Pp
122The string may begin with an arbitrary amount of white space
123(as determined by
124.Xr isspace 3 )
125followed by a single optional
126.Ql +
127or
128.Ql -
129sign.
130If
131.Fa base
132is zero or 16,
133the string may then include a
134.Dq Li 0x
135prefix,
136and the number will be read in base 16; otherwise, a zero
137.Fa base
138is taken as 10 (decimal) unless the next character is
139.Ql 0 ,
140in which case it is taken as 8 (octal).
141.Pp
142The remainder of the string is converted to a
143.Vt long , "long long" , intmax_t
144or
145.Vt quad_t
146value in the obvious manner,
147stopping at the first character which is not a valid digit
148in the given base.
149(In bases above 10, the letter
150.Ql A
151in either upper or lower case
152represents 10,
153.Ql B
154represents 11, and so forth, with
155.Ql Z
156representing 35.)
157.Pp
158If
159.Fa endptr
160is not
161.Dv NULL ,
162.Fn strtol
163stores the address of the first invalid character in
164.Fa *endptr .
165If there were no digits at all, however,
166.Fn strtol
167stores the original value of
168.Fa str
169in
170.Fa *endptr .
171(Thus, if
172.Fa *str
173is not
174.Ql \e0
175but
176.Fa **endptr
177is
178.Ql \e0
179on return, the entire string was valid.)
180.Pp
181Extended locale versions of these functions are documented in
182.Xr strtol_l 3 .
183See
184.Xr xlocale 3
185for more information.
186.Sh RETURN VALUES
187The
188.Fn strtol ,
189.Fn strtoll ,
190.Fn strtoimax ,
191and
192.Fn strtoq
193functions
194return the result of the conversion,
195unless the value would underflow or overflow.
196If no conversion could be performed, 0 is returned and
197the global variable
198.Va errno
199is set to
200.Er EINVAL
201(the last feature is not portable across all platforms).
202If an overflow or underflow occurs,
203.Va errno
204is set to
205.Er ERANGE
206and the function return value is clamped according
207to the following table.
208.Bl -column -offset indent ".Fn strtoimax" ".Dv INTMAX_MIN" ".Dv INTMAX_MAX"
209.It Sy Function Ta Sy underflow Ta Sy overflow
210.It Fn strtol Ta Dv LONG_MIN Ta Dv LONG_MAX
211.It Fn strtoll Ta Dv LLONG_MIN Ta Dv LLONG_MAX
212.It Fn strtoimax Ta Dv INTMAX_MIN Ta Dv INTMAX_MAX
213.It Fn strtoq Ta Dv LLONG_MIN Ta Dv LLONG_MAX
214.El
215.Sh ERRORS
216.Bl -tag -width Er
217.It Bq Er EINVAL
218The value of
219.Fa base
220is not supported or
221no conversion could be performed
222(the last feature is not portable across all platforms).
223.It Bq Er ERANGE
224The given string was out of range; the value converted has been clamped.
225.El
226.Sh LEGACY SYNOPSIS
227.Fd #include <stdlib.h>
228.Fd #include <limits.h>
229.Pp
230.In limits.h
231is necessary for the
232.Fn strtol
233and
234.Fn strtoll
235functions.
236.Sh SEE ALSO
237.Xr atof 3 ,
238.Xr atoi 3 ,
239.Xr atol 3 ,
240.Xr strtod 3 ,
241.Xr strtol_l 3 ,
242.Xr strtoul 3 ,
243.Xr wcstol 3 ,
244.Xr compat 5
245.Sh STANDARDS
246The
247.Fn strtol
248function
249conforms to
250.St -isoC .
251The
252.Fn strtoll
253and
254.Fn strtoimax
255functions
256conform to
257.St -isoC-99 .
258The
259.Bx
260.Fn strtoq
261function is deprecated.