]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/trunc.3
intro.1, _exit.2, access.2, alarm.2, alloc_hugepages.2, arch_prctl.2, bind.2, chdir...
[thirdparty/man-pages.git] / man3 / trunc.3
CommitLineData
fea681da
MK
1.\" Copyright (C) 2001 Andries Brouwer <aeb@cwi.nl>.
2.\"
93015253 3.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
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.
c13182ef 12.\"
fea681da
MK
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.
c13182ef 20.\"
fea681da
MK
21.\" Formatted or processed versions of this manual, if unaccompanied by
22.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 23.\" %%%LICENSE_END
fea681da 24.\"
50831f9b 25.TH TRUNC 3 2010-09-20 "" "Linux Programmer's Manual"
fea681da 26.SH NAME
5fab2e7c 27trunc, truncf, truncl \- round to integer, toward zero
fea681da
MK
28.SH SYNOPSIS
29.nf
30.B #include <math.h>
31.sp
32.BI "double trunc(double " x );
33.br
34.BI "float truncf(float " x );
35.br
36.BI "long double truncl(long double " x );
37.fi
38.sp
cc4615cc
MK
39Link with \fI\-lm\fP.
40.sp
41.in -4n
42Feature Test Macro Requirements for glibc (see
43.BR feature_test_macros (7)):
44.in
45.sp
46.ad l
47.BR trunc (),
48.BR truncf (),
49.BR truncl ():
5161d9e0 50.RS 4
d6585dbe
MK
51_XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE ||
52_POSIX_C_SOURCE\ >=\ 200112L;
5161d9e0
MK
53.br
54or
cc4615cc 55.I cc\ -std=c99
5161d9e0
MK
56.RE
57.ad
fea681da
MK
58.SH DESCRIPTION
59These functions round \fIx\fP to the nearest integer
60not larger in absolute value.
47297adb 61.SH RETURN VALUE
f1ab30a7
MK
62These functions return the rounded integer value.
63
64If \fIx\fP is integral, infinite, or NaN, \fIx\fP itself is returned.
fea681da 65.SH ERRORS
f1ab30a7 66No errors occur.
f0d7ce1d
MK
67.SH VERSIONS
68These functions first appeared in glibc in version 2.1.
47297adb 69.SH CONFORMING TO
f1ab30a7
MK
70C99, POSIX.1-2001.
71.SH NOTES
72The integral value returned by these functions may be too large
73to store in an integer type
74.RI ( int ,
75.IR long ,
76etc.).
77To avoid an overflow, which will produce undefined results,
78an application should perform a range check on the returned value
79before assigning it to an integer type.
47297adb 80.SH SEE ALSO
fea681da
MK
81.BR ceil (3),
82.BR floor (3),
83.BR lrint (3),
84.BR nearbyint (3),
85.BR rint (3),
86.BR round (3)