summaryrefslogtreecommitdiffstats
path: root/man3/atof.3
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--man3/atof.39
1 files changed, 4 insertions, 5 deletions
diff --git a/man3/atof.3 b/man3/atof.3
index bb1398a..acb75ae 100644
--- a/man3/atof.3
+++ b/man3/atof.3
@@ -9,7 +9,7 @@
.\" 386BSD man pages
.\" Modified Mon Mar 29 22:39:24 1993, David Metcalfe
.\" Modified Sat Jul 24 21:39:22 1993, Rik Faith (faith@cs.unc.edu)
-.TH atof 3 2023-07-20 "Linux man-pages 6.05.01"
+.TH atof 3 2023-10-31 "Linux man-pages 6.7"
.SH NAME
atof \- convert a string to a double
.SH LIBRARY
@@ -18,7 +18,7 @@ Standard C library
.SH SYNOPSIS
.nf
.B #include <stdlib.h>
-.PP
+.P
.BI "double atof(const char *" nptr );
.fi
.SH DESCRIPTION
@@ -28,13 +28,13 @@ function converts the initial portion of the string
pointed to by \fInptr\fP to
.IR double .
The behavior is the same as
-.PP
+.P
.in +4n
.EX
strtod(nptr, NULL);
.EE
.in
-.PP
+.P
except that
.BR atof ()
does not detect errors.
@@ -54,7 +54,6 @@ T{
.BR atof ()
T} Thread safety MT-Safe locale
.TE
-.sp 1
.SH STANDARDS
C11, POSIX.1-2008.
.SH HISTORY