1 .\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
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.
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.
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
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .TH TRUNC 3 2021-03-22 "" "Linux Programmer's Manual"
27 trunc, truncf, truncl \- round to integer, toward zero
32 .BI "double trunc(double " x );
33 .BI "float truncf(float " x );
34 .BI "long double truncl(long double " x );
40 Feature Test Macro Requirements for glibc (see
41 .BR feature_test_macros (7)):
48 _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
53 to the nearest integer value that is not larger in magnitude than
56 These functions return the rounded integer value, in floating format.
60 is integral, infinite, or NaN,
66 These functions first appeared in glibc in version 2.1.
68 For an explanation of the terms used in this section, see
76 Interface Attribute Value
81 T} Thread safety MT-Safe
87 C99, POSIX.1-2001, POSIX.1-2008.
89 The integral value returned by these functions may be too large
90 to store in an integer type
94 To avoid an overflow, which will produce undefined results,
95 an application should perform a range check on the returned value
96 before assigning it to an integer type.