]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/trunc.3
a90e8edc8be3c712835e5c2942578a77d26b8571
[thirdparty/man-pages.git] / man3 / trunc.3
1 .\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .TH TRUNC 3 2017-09-15 "" "Linux Programmer's Manual"
26 .SH NAME
27 trunc, truncf, truncl \- round to integer, toward zero
28 .SH SYNOPSIS
29 .nf
30 .B #include <math.h>
31 .PP
32 .BI "double trunc(double " x );
33 .BI "float truncf(float " x );
34 .BI "long double truncl(long double " x );
35 .fi
36 .PP
37 Link with \fI\-lm\fP.
38 .PP
39 .in -4n
40 Feature Test Macro Requirements for glibc (see
41 .BR feature_test_macros (7)):
42 .in
43 .PP
44 .ad l
45 .BR trunc (),
46 .BR truncf (),
47 .BR truncl ():
48 .RS 4
49 _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
50 .RE
51 .ad
52 .SH DESCRIPTION
53 These functions round
54 .I x
55 to the nearest integer value that is not larger in magnitude than
56 .IR x .
57 .SH RETURN VALUE
58 These functions return the rounded integer value, in floating format.
59 .PP
60 If
61 .IR x
62 is integral, infinite, or NaN,
63 .I x
64 itself is returned.
65 .SH ERRORS
66 No errors occur.
67 .SH VERSIONS
68 These functions first appeared in glibc in version 2.1.
69 .SH ATTRIBUTES
70 For an explanation of the terms used in this section, see
71 .BR attributes (7).
72 .TS
73 allbox;
74 lbw27 lb lb
75 l l l.
76 Interface Attribute Value
77 T{
78 .BR trunc (),
79 .BR truncf (),
80 .BR truncl ()
81 T} Thread safety MT-Safe
82 .TE
83 .SH CONFORMING TO
84 C99, POSIX.1-2001, POSIX.1-2008.
85 .SH NOTES
86 The integral value returned by these functions may be too large
87 to store in an integer type
88 .RI ( int ,
89 .IR long ,
90 etc.).
91 To avoid an overflow, which will produce undefined results,
92 an application should perform a range check on the returned value
93 before assigning it to an integer type.
94 .SH SEE ALSO
95 .BR ceil (3),
96 .BR floor (3),
97 .BR lrint (3),
98 .BR nearbyint (3),
99 .BR rint (3),
100 .BR round (3)