man-pages/man3/ceil.3

109 lines
3.2 KiB
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright 2001 Andries Brouwer <aeb@cwi.nl>.
.\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
.\" <mtk.manpages@gmail.com>
2004-11-03 13:51:07 +00:00
.\"
.\" 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.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" 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.
.\"
2004-11-03 13:51:07 +00:00
.\" 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
.\" the use of the information contained herein. The author(s) may not
.\" 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.
.\"
2004-11-03 13:51:07 +00:00
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
2008-08-01 05:54:27 +00:00
.TH CEIL 3 2008-08-05 "" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
ceil, ceilf, ceill \- ceiling function: smallest integral value not
2006-12-27 03:54:41 +00:00
less than argument
2004-11-03 13:51:07 +00:00
.SH SYNOPSIS
.nf
.B #include <math.h>
.sp
.BI "double ceil(double " x );
.br
.BI "float ceilf(float " x );
.br
.BI "long double ceill(long double " x );
.fi
.sp
2007-07-21 05:25:03 +00:00
Link with \fI\-lm\fP.
.sp
.in -4n
Feature Test Macro Requirements for glibc (see
.BR feature_test_macros (7)):
.in
.sp
.ad l
.BR ceilf (),
.BR ceill ():
_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE; or
.I cc\ -std=c99
.ad b
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
These functions return the smallest integral value that is not less than
.IR x .
For example,
.IR ceil(0.5)
is 1.0, and
.IR ceil(\-0.5)
is 0.0.
2004-11-03 13:51:07 +00:00
.SH "RETURN VALUE"
These functions return the ceiling of
.IR x .
If \fIx\fP is integral, +0, \-0, NaN, or infinite,
2004-11-03 13:51:07 +00:00
\fIx\fP itself is returned.
.SH ERRORS
No errors occur.
POSIX.1-2001 documents a "range error" for overflows, but see NOTES.
.SH "CONFORMING TO"
C99, POSIX.1-2001.
The variant returning
.I double
also conforms to
SVr4, 4.3BSD, C89.
2004-11-03 13:51:07 +00:00
.SH NOTES
2006-08-03 13:57:30 +00:00
SUSv2 and POSIX.1-2001 contain text about overflow (which might set
2004-11-03 13:51:07 +00:00
.I errno
2007-07-09 20:07:44 +00:00
to
.BR ERANGE ,
or raise an
.B FE_OVERFLOW
exception).
2004-11-03 13:51:07 +00:00
In practice, the result cannot overflow on any current machine,
so this error-handling stuff is just nonsense.
.\" The POSIX.1-2001 APPLICATION USAGE SECTION discusses this point.
2004-11-03 13:51:07 +00:00
(More precisely, overflow can happen only when the maximum value
of the exponent is smaller than the number of mantissa bits.
For the IEEE-754 standard 32-bit and 64-bit floating-point numbers
the maximum value of the exponent is 128 (respectively, 1024),
and the number of mantissa bits is 24 (respectively, 53).)
The integral value returned by these functions may be too large
to store in an integer type
.RI ( int ,
.IR long ,
etc.).
To avoid an overflow, which will produce undefined results,
an application should perform a range check on the returned value
before assigning it to an integer type.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR floor (3),
.BR lrint (3),
.BR nearbyint (3),
.BR rint (3),
.BR round (3),
.BR trunc (3)