]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/ecvt_r.3
intro.1, _exit.2, access.2, alarm.2, alloc_hugepages.2, arch_prctl.2, bind.2, chdir...
[thirdparty/man-pages.git] / man3 / ecvt_r.3
index 7b715a7fa8260dfef816e34414b266a631669113..c4143e3e38e8a5e3d687fa7272fc2364c7dd8825 100644 (file)
@@ -1,5 +1,6 @@
 .\" Copyright (C) 2002 Andries Brouwer <aeb@cwi.nl>
 .\"
+.\" %%%LICENSE_START(VERBATIM)
 .\" Permission is granted to make and distribute verbatim copies of this
 .\" manual provided the copyright notice and this permission notice are
 .\" preserved on all copies.
@@ -8,7 +9,7 @@
 .\" manual under the conditions for verbatim copying, provided that the
 .\" entire resulting derived work is distributed under the terms of a
 .\" permission notice identical to this one.
-.\" 
+.\"
 .\" Since the Linux kernel and libraries are constantly changing, this
 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
 .\" responsibility for errors or omissions, or for damages resulting from
 .\" have taken the same level of care in the production of this manual,
 .\" which is licensed free of charge, as they might when working
 .\" professionally.
-.\" 
+.\"
 .\" Formatted or processed versions of this manual, if unaccompanied by
 .\" the source, must acknowledge the copyright and authors of this work.
+.\" %%%LICENSE_END
 .\"
 .\" This replaces an earlier man page written by Walter Harms
 .\" <walter.harms@informatik.uni-oldenburg.de>.
 .\"
 .\" Corrected return types; from Fabian; 2004-10-05
 .\"
-.TH ECVT_R 3  2004-10-05 "GNU" "Linux Programmer's Manual"
+.TH ECVT_R 3  2007-07-26 "GNU" "Linux Programmer's Manual"
 .SH NAME
 ecvt_r, fcvt_r, qecvt_r, qfcvt_r \- convert a floating-point number to a string
 .SH SYNOPSIS
+.nf
 .B #include <stdlib.h>
 .sp
 .BI "int ecvt_r(double " number ", int " ndigits ", int *" decpt ,
-.BI "int *" sign ", char *" buf ", size_t " len );
+.BI "           int *" sign ", char *" buf ", size_t " len );
 .sp
 .BI "int fcvt_r(double " number ", int " ndigits ", int *" decpt ,
-.BI "int *" sign ", char *" buf ", size_t " len );
+.BI "           int *" sign ", char *" buf ", size_t " len );
 .sp
 .BI "int qecvt_r(long double " number ", int " ndigits ", int *" decpt ,
-.BI "int *" sign ", char *" buf ", size_t " len );
+.BI "           int *" sign ", char *" buf ", size_t " len );
 .sp
 .BI "int qfcvt_r(long double " number ", int " ndigits ", int *" decpt ,
-.BI "int *" sign ", char *" buf ", size_t " len );
+.BI "           int *" sign ", char *" buf ", size_t " len );
+.fi
+.sp
+.in -4n
+Feature Test Macro Requirements for glibc (see
+.BR feature_test_macros (7)):
+.in
+.sp
+.ad l
+.BR ecvt_r (),
+.BR fcvt_r (),
+.BR qecvt_r (),
+.BR qfcvt_r ():
+.RS 4
+_SVID_SOURCE || _BSD_SOURCE || _XOPEN_SOURCE\ >=\ 500
+.RE
+.ad b
 .SH DESCRIPTION
 The functions
 .BR ecvt_r (),
@@ -50,11 +69,11 @@ The functions
 and
 .BR qfcvt_r ()
 are identical to
-.BR ecvt ,
-.BR fcvt ,
-.BR qecvt
+.BR ecvt (3),
+.BR fcvt (3),
+.BR qecvt (3)
 and
-.BR qfcvt ,
+.BR qfcvt (3),
 respectively, except that they do not return their result in a static
 buffer, but instead use the supplied
 .I buf
@@ -64,15 +83,16 @@ See
 .BR ecvt (3)
 and
 .BR qecvt (3).
-.SH "RETURN VALUE"
+.SH RETURN VALUE
 These functions return 0 on success, and \-1 otherwise.
+.SH CONFORMING TO
+These functions are GNU extensions.
 .SH NOTES
-These functions are obsolete. Instead,
-.BR sprintf ()
+These functions are obsolete.
+Instead,
+.BR sprintf (3)
 is recommended.
-.SH "CONFORMING TO"
-These functions are GNU extensions.
-.SH "SEE ALSO"
+.SH SEE ALSO
 .BR ecvt (3),
 .BR qecvt (3),
 .BR sprintf (3)