readv.2, pthread_tryjoin_np.3, stailq.3, strlen.3, wcslen.3: Arrange .SH sections...
[man-pages.git] / man3 / floor.3
blob4fa848181d2518fcef0aa5499f9439c090168b30
1 .\" Copyright 2001 Andries Brouwer <aeb@cwi.nl>.
2 .\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3 .\"     <mtk.manpages@gmail.com>
4 .\"
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" %%%LICENSE_END
26 .\"
27 .TH FLOOR 3  2021-03-22 "" "Linux Programmer's Manual"
28 .SH NAME
29 floor, floorf, floorl \- largest integral value not greater than argument
30 .SH SYNOPSIS
31 .nf
32 .B #include <math.h>
33 .PP
34 .BI "double floor(double " x );
35 .BI "float floorf(float " x );
36 .BI "long double floorl(long double " x );
37 .fi
38 .PP
39 Link with \fI\-lm\fP.
40 .PP
41 .RS -4
42 Feature Test Macro Requirements for glibc (see
43 .BR feature_test_macros (7)):
44 .RE
45 .PP
46 .BR floorf (),
47 .BR floorl ():
48 .nf
49     _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
50         || /* Since glibc 2.19: */ _DEFAULT_SOURCE
51         || /* Glibc <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
52 .fi
53 .SH DESCRIPTION
54 These functions return the largest integral value that is not greater than
55 .IR x .
56 .PP
57 For example,
58 .IR floor(0.5)
59 is 0.0, and
60 .IR floor(\-0.5)
61 is \-1.0.
62 .SH RETURN VALUE
63 These functions return the floor of
64 .IR x .
65 .PP
67 .I x
68 is integral, +0, \-0, NaN, or an infinity,
69 .I x
70 itself is returned.
71 .SH ERRORS
72 No errors occur.
73 POSIX.1-2001 documents a range error for overflows, but see NOTES.
74 .SH ATTRIBUTES
75 For an explanation of the terms used in this section, see
76 .BR attributes (7).
77 .ad l
78 .nh
79 .TS
80 allbox;
81 lbx lb lb
82 l l l.
83 Interface       Attribute       Value
85 .BR floor (),
86 .BR floorf (),
87 .BR floorl ()
88 T}      Thread safety   MT-Safe
89 .TE
90 .hy
91 .ad
92 .sp 1
93 .SH CONFORMING TO
94 C99, POSIX.1-2001, POSIX.1-2008.
95 .PP
96 The variant returning
97 .I double
98 also conforms to
99 SVr4, 4.3BSD, C89.
100 .SH NOTES
101 SUSv2 and POSIX.1-2001 contain text about overflow (which might set
102 .I errno
104 .BR ERANGE ,
105 or raise an
106 .B FE_OVERFLOW
107 exception).
108 In practice, the result cannot overflow on any current machine,
109 so this error-handling stuff is just nonsense.
110 .\" The POSIX.1-2001 APPLICATION USAGE SECTION discusses this point.
111 (More precisely, overflow can happen only when the maximum value
112 of the exponent is smaller than the number of mantissa bits.
113 For the IEEE-754 standard 32-bit and 64-bit floating-point numbers
114 the maximum value of the exponent is 128 (respectively, 1024),
115 and the number of mantissa bits is 24 (respectively, 53).)
116 .SH SEE ALSO
117 .BR ceil (3),
118 .BR lrint (3),
119 .BR nearbyint (3),
120 .BR rint (3),
121 .BR round (3),
122 .BR trunc (3)