Only one name per .Nm macro for better readability.
[dragonfly.git] / lib / libc / stdlib / strtol.3
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.4.2.5 2001/12/14 18:33:58 ru Exp $
38 .\" $DragonFly: src/lib/libc/stdlib/strtol.3,v 1.3 2005/08/05 22:35:10 swildner Exp $
39 .\"
40 .Dd June 4, 1993
41 .Dt STRTOL 3
42 .Os
43 .Sh NAME
44 .Nm strtol ,
45 .Nm strtoll ,
46 .Nm strtoq
47 .Nd "convert a string value to a long, long long, or quad_t integer"
48 .Sh LIBRARY
49 .Lb libc
50 .Sh SYNOPSIS
51 .In stdlib.h
52 .In limits.h
53 .Ft long
54 .Fn strtol "const char *nptr" "char **endptr" "int base"
55 .Ft long long
56 .Fn strtoll "const char *nptr" "char **endptr" "int base"
57 .In sys/types.h
58 .In stdlib.h
59 .In limits.h
60 .Ft quad_t
61 .Fn strtoq "const char *nptr" "char **endptr" "int base"
62 .Sh DESCRIPTION
63 The
64 .Fn strtol
65 function
66 converts the string in
67 .Fa nptr
68 to a
69 .Em long
70 value.
71 The
72 .Fn strtoll
73 function
74 converts the string in
75 .Fa nptr
76 to a
77 .Em long long
78 value.
79 The
80 .Fn strtoq
81 function
82 converts the string in
83 .Fa nptr
84 to a
85 .Em quad_t
86 value.
87 The conversion is done according to the given
88 .Fa base ,
89 which must be between 2 and 36 inclusive,
90 or be the special value 0.
91 .Pp
92 The string may begin with an arbitrary amount of white space
93 (as determined by
94 .Xr isspace 3 )
95 followed by a single optional
96 .Ql +
97 or
98 .Ql -
99 sign.
100 If
101 .Fa base
102 is zero or 16,
103 the string may then include a
104 .Ql 0x
105 prefix,
106 and the number will be read in base 16; otherwise, a zero
107 .Fa base
108 is taken as 10 (decimal) unless the next character is
109 .Ql 0 ,
110 in which case it is taken as 8 (octal).
111 .Pp
112 The remainder of the string is converted to a
113 .Em long
114 value in the obvious manner,
115 stopping at the first character which is not a valid digit
116 in the given base.
117 (In bases above 10, the letter
118 .Ql A
119 in either upper or lower case
120 represents 10,
121 .Ql B
122 represents 11, and so forth, with
123 .Ql Z
124 representing 35.)
125 .Pp
126 If
127 .Fa endptr
128 is non nil,
129 .Fn strtol
130 stores the address of the first invalid character in
131 .Fa *endptr .
132 If there were no digits at all, however,
133 .Fn strtol
134 stores the original value of
135 .Fa nptr
136 in
137 .Fa *endptr .
138 (Thus, if
139 .Fa *nptr
140 is not
141 .Ql \e0
142 but
143 .Fa **endptr
144 is
145 .Ql \e0
146 on return, the entire string was valid.)
147 .Sh RETURN VALUES
148 The
149 .Fn strtol
150 function
151 returns the result of the conversion,
152 unless the value would underflow or overflow.
153 If an underflow occurs,
154 .Fn strtol
155 returns
156 .Dv LONG_MIN .
157 If an overflow occurs,
158 .Fn strtol
159 returns
160 .Dv LONG_MAX .
161 The
162 .Fn strtoll
163 function
164 returns the result of the conversion,
165 unless the value would underflow or overflow.
166 If an underflow occurs,
167 .Fn strtoll
168 returns
169 .Dv LLONG_MIN .
170 If an overflow occurs,
171 .Fn strtoll
172 returns
173 .Dv LLONG_MAX .
174 In all cases,
175 .Va errno
176 is set to
177 .Er ERANGE .
178 .Sh ERRORS
179 .Bl -tag -width Er
180 .It Bq Er ERANGE
181 The given string was out of range; the value converted has been clamped.
182 .El
183 .Sh SEE ALSO
184 .Xr atof 3 ,
185 .Xr atoi 3 ,
186 .Xr atol 3 ,
187 .Xr strtod 3 ,
188 .Xr strtoul 3
189 .Sh STANDARDS
190 The
191 .Fn strtol
192 function
193 conforms to
194 .St -isoC .
195 The
196 .Fn strtoll
197 function
198 conforms to
199 .St -isoC-99 .
200 The
201 .Bx
202 .Fn strtoq
203 function is deprecated.
204 .Sh BUGS
205 Ignores the current locale.