2 .\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved.
3 .\" Copyright 1989 AT&T
4 .\" Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved.
5 .\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
6 .\" http://www.opengroup.org/bookstore/.
7 .\" The Institute of Electrical and Electronics Engineers and The Open Group, have given us permission to reprint portions of their documentation. In the following statement, the phrase "this text" refers to portions of the system documentation. Portions of this text are reprinted and reproduced in electronic form in the Sun OS Reference Manual, from IEEE Std 1003.1, 2004 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 6, Copyright (C) 2001-2004 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. In the event of any discrepancy between these versions and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.opengroup.org/unix/online.html.
8 .\" This notice shall appear on any product containing this material.
9 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
10 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
11 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
12 .TH STRTOD 3C "Nov 1, 2003"
14 strtod, strtof, strtold, atof \- convert string to floating-point number
20 \fBdouble\fR \fBstrtod\fR(\fBconst char *restrict\fR \fInptr\fR, \fBchar **restrict\fR \fIendptr\fR);
25 \fBfloat\fR \fBstrtof\fR(\fBconst char *restrict\fR \fInptr\fR, \fBchar **restrict\fR \fIendptr\fR);
30 \fBlong double\fR \fBstrtold\fR(\fBconst char *restrict\fR \fInptr\fR, \fBchar **restrict\fR \fIendptr\fR);
35 \fBdouble\fR \fBatof\fR(\fBconst char *\fR\fIstr\fR);
41 The \fBstrtod()\fR, \fBstrtof()\fR, and \fBstrtold()\fR functions convert the
42 initial portion of the string pointed to by \fInptr\fR to \fBdouble\fR,
43 \fBfloat\fR, and \fBlong double\fR representation, respectively. First they
44 decompose the input string into three parts:
48 An initial, possibly empty, sequence of white-space characters (as specified
54 A subject sequence interpreted as a floating-point constant or representing
60 A final string of one or more unrecognized characters, including the
61 terminating null byte of the input string.
65 Then they attempt to convert the subject sequence to a floating-point number,
66 and return the result.
69 The expected form of the subject sequence is an optional plus or minus sign,
70 then one of the following:
75 A non-empty sequence of digits optionally containing a radix character, then an
76 optional exponent part
82 A 0x or 0X, then a non-empty sequence of hexadecimal digits optionally
83 containing a radix character, then an optional binary exponent part
89 One of INF or INFINITY, ignoring case
95 One of NAN or NAN(\fIn-char-sequence\fR(\fIopt\fR)), ignoring case in the NAN
103 n-char-sequence digit
104 n-char-sequence nondigit
111 In default mode for \fBstrtod()\fR, only decimal, INF/INFINITY, and
112 NAN/NAN(\fIn-char-sequence\fR) forms are recognized. In C99/SUSv3 mode,
113 hexadecimal strings are also recognized.
116 In default mode for \fBstrtod()\fR, the \fIn-char-sequence\fR in the
117 NAN(\fIn-char-equence\fR) form can contain any character except ')' (right
118 parenthesis) or '\e0' (null). In C99/SUSv3 mode, the \fIn-char-sequence\fR can
119 contain only upper and lower case letters, digits, and '_' (underscore).
122 The \fBstrtof()\fR and \fBstrtold()\fR functions always function in
123 C99/SUSv3-conformant mode.
126 The subject sequence is defined as the longest initial subsequence of the input
127 string, starting with the first non-white-space character, that is of the
128 expected form. The subject sequence contains no characters if the input string
129 is not of the expected form.
132 If the subject sequence has the expected form for a floating-point number, the
133 sequence of characters starting with the first digit or the decimal-point
134 character (whichever occurs first) is interpreted as a floating constant of the
135 C language, except that the radix character is used in place of a period, and
136 that if neither an exponent part nor a radix character appears in a decimal
137 floating-point number, or if a binary exponent part does not appear in a
138 hexadecimal floating-point number, an exponent part of the appropriate type
139 with value zero is assumed to follow the last digit in the string. If the
140 subject sequence begins with a minus sign, the sequence is interpreted as
141 negated. A character sequence INF or INFINITY is interpreted as an infinity. A
142 character sequence NAN or NAN(\fIn-char-sequence\fR(\fIopt\fR)) is interpreted
143 as a quiet NaN. A pointer to the final string is stored in the object pointed
144 to by \fIendptr\fR, provided that \fIendptr\fR is not a null pointer.
147 If the subject sequence has either the decimal or hexadecimal form, the value
148 resulting from the conversion is rounded correctly according to the prevailing
149 floating point rounding direction mode. The conversion also raises floating
150 point inexact, underflow, or overflow exceptions as appropriate.
153 The radix character is defined in the program's locale (category
154 \fBLC_NUMERIC\fR). In the POSIX locale, or in a locale where the radix
155 character is not defined, the radix character defaults to a period ('.').
158 If the subject sequence is empty or does not have the expected form, no
159 conversion is performed; the value of \fInptr\fR is stored in the object
160 pointed to by \fIendptr\fR, provided that \fIendptr\fR is not a null pointer.
163 The \fBstrtod()\fR function does not change the setting of \fBerrno\fR if
167 The \fBatof(\fR\fIstr\fR\fB)\fR function call is equivalent to
168 \fBstrtod(\fR\fInptr\fR\fB, (char **)NULL)\fR.
172 Upon successful completion, these functions return the converted value. If no
173 conversion could be performed, \fB0\fR is returned.
176 If the correct value is outside the range of representable values,
177 \fB\(+-HUGE_VAL\fR, \fB\(+-HUGE_VALF\fR, or \fB\(+-HUGE_VALL\fR is returned
178 (according to the sign of the value), a floating point overflow exception is
179 raised, and \fBerrno\fR is set to \fBERANGE\fR.
182 If the correct value would cause an underflow, the correctly rounded result
183 (which may be normal, subnormal, or zero) is returned, a floating point
184 underflow exception is raised, and \fBerrno\fR is set to \fBERANGE\fR.
188 These functions will fail if:
195 The value to be returned would cause overflow or underflow
200 These functions may fail if:
207 No conversion could be performed.
213 Since 0 is returned on error and is also a valid return on success, an
214 application wishing to check for error situations should set \fBerrno\fR to 0,
215 then call \fBstrtod()\fR, \fBstrtof()\fR, or \fBstrtold()\fR, then check
219 The changes to \fBstrtod()\fR introduced by the ISO/IEC 9899: 1999 standard can
220 alter the behavior of well-formed applications complying with the ISO/IEC 9899:
221 1990 standard and thus earlier versions of IEEE Std 1003.1-200x. One such
227 what_kind_of_number (char *s)
232 d = strtod(s, &endp);
233 if (s != endp && *endp == `\0')
234 printf("It's a float with value %g\en", d);
237 l = strtol(s, &endp, 0);
238 if (s != endp && *endp == `\e0')
239 printf("It's an integer with value %ld\en", 1);
250 If the function is called with:
254 what_kind_of_number ("0x10")
260 an ISO/IEC 9899: 1990 standard-compliant library will result in the function
265 It's an integer with value 16
271 With the ISO/IEC 9899: 1999 standard, the result is:
275 It's a float with value 16
281 The change in behavior is due to the inclusion of floating-point numbers in
282 hexadecimal notation without requiring that either a decimal point or the
283 binary exponent be present.
287 See \fBattributes\fR(5) for descriptions of the following attributes:
295 ATTRIBUTE TYPE ATTRIBUTE VALUE
299 Interface Stability Standard
301 MT-Level MT-Safe with exceptions
307 \fBisspace\fR(3C), \fBlocaleconv\fR(3C), \fBscanf\fR(3C), \fBsetlocale\fR(3C),
308 \fBstrtol\fR(3C), \fBattributes\fR(5), \fBstandards\fR(5)
312 The \fBstrtod()\fR and \fBatof()\fR functions can be used safely in
313 multithreaded applications, as long as \fBsetlocale\fR(3C) is not called to
317 The DESCRIPTION and RETURN VALUES sections above are very similar to the
318 wording used by the Single UNIX Specification version 2 (SUSv2) and the 1989 C
319 Standard to describe the behavior of the \fBstrtod()\fR function. Since some
320 users have reported that they find the description confusing, the following
321 notes might be helpful.
325 The \fBstrtod()\fR function does not modify the string pointed to by
326 \fIstr\fR and does not \fBmalloc()\fR space to hold the decomposed portions of
332 If \fIendptr\fR is not \fB(char **)NULL\fR, \fBstrtod()\fR will set the
333 pointer pointed to by \fIendptr\fR to the first byte of the "final string of
334 unrecognized characters". (If all input characters were processed, the pointer
335 pointed to by \fIendptr\fR will be set to point to the null character at the
336 end of the input string.)
341 If \fBstrtod()\fR returns 0.0, one of the following occurred:
345 The "subject sequence" was not an empty string, but evaluated to 0.0. (In
346 this case, \fBerrno\fR will be left unchanged.)
351 The "subject sequence" was an empty string . In this case, \fBerrno\fR will
352 be left unchanged. (The Single UNIX Specification version 2 allows \fBerrno\fR
353 to be set to \fBEINVAL\fR or to be left unchanged. The C Standard does not
354 specify any specific behavior in this case.)
359 The "subject sequence" specified a numeric value whose conversion resulted
360 in a floating point underflow. In this case, an underflow exception is raised
361 and \fBerrno\fR is set to \fBERANGE\fR.
363 Note that the standards do not require that implementations distinguish between
364 these three cases. An application can determine case (b) by making sure that
365 there are no leading white-space characters in the string pointed to by
366 \fIstr\fR and giving \fBstrtod()\fR an \fIendptr\fR that is not \fB(char
367 **)NULL\fR. If \fIendptr\fR points to the first character of \fIstr\fR when
368 \fBstrtod()\fR returns, you have detected case (b). Case (c) can be detected
369 by examining the underflow flag or by looking for a non-zero digit before the
370 exponent part of the "subject sequence". Note, however, that the decimal-point
371 character is locale-dependent.
376 If \fBstrtod()\fR returns \fB+HUGE_VAL\fR or \fB\(miHUGE_VAL\fR, one of the
381 If \fB+HUGE_VAL\fR is returned and \fBerrno\fR is set to \fBERANGE\fR, a
382 floating point overflow occurred while processing a positive value, causing a
383 floating point overflow exception to be raised.
388 If \fB\(miHUGE_VAL\fR is returned and \fBerrno\fR is set to \fBERANGE\fR, a
389 floating point overflow occurred while processing a negative value, causing a
390 floating point overflow exception to be raised.
395 If \fBstrtod()\fR does not set \fBerrno\fR to \fBERANGE\fR, the value
396 specified by the "subject string" converted to \fB+HUGE_VAL\fR or
397 \fB\(miHUGE_VAL\fR, respectively.
399 Note that if \fBerrno\fR is set to \fBERANGE\fR when \fBstrtod()\fR is called,
400 case (c) can be distinguished from cases (a) and (b) by examining either
401 \fBERANGE\fR or the overflow flag.