diff options
author | das <das@FreeBSD.org> | 2005-01-11 23:12:17 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2005-01-11 23:12:17 +0000 |
commit | 0a78d59d1fb4973a45e66d96381e83171e30f3df (patch) | |
tree | 8c0734c15b38949bb412038c79d17641dc3daf74 /lib/msun/man/lround.3 | |
parent | 14264501406dc382a32b3940819e53b9839c1833 (diff) | |
download | FreeBSD-src-0a78d59d1fb4973a45e66d96381e83171e30f3df.zip FreeBSD-src-0a78d59d1fb4973a45e66d96381e83171e30f3df.tar.gz |
Document [l]lrint[f]() and [l]lround[f]().
Diffstat (limited to 'lib/msun/man/lround.3')
-rw-r--r-- | lib/msun/man/lround.3 | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/lib/msun/man/lround.3 b/lib/msun/man/lround.3 new file mode 100644 index 0000000..e5479ae --- /dev/null +++ b/lib/msun/man/lround.3 @@ -0,0 +1,94 @@ +.\" Copyright (c) 2005 David Schultz <das@FreeBSD.org> +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND +.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE +.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +.\" SUCH DAMAGE. +.\" +.\" $FreeBSD$ +.\" +.Dd January 11, 2005 +.Dt LROUND 3 +.Os +.Sh NAME +.Nm llround , +.Nm llroundf , +.Nm lround , +.Nm lroundf +.Nd convert to nearest integral value +.Sh LIBRARY +.Lb libm +.Sh SYNOPSIS +.In math.h +.Ft long long +.Fn llround "double x" +.Ft long long +.Fn llroundf "float x" +.Ft long +.Fn lround "double x" +.Ft long +.Fn lroundf "float x" +.Sh DESCRIPTION +The +.Fn lround +function returns the integer nearest to its argument +.Fa x , +rounding away from zero in halfway cases. +If the rounded result is too large to be represented as a +.Ft long +value, an invalid exception is raised and the return value is undefined. +Otherwise, if +.Fa x +is not an integer, +.Fn lround +may raise an inexact exception. +When the rounded result is representable as a +.Ft long , +the expression +.Li lround(x) +is equivalent to +.Li (long)round(x) +(although the former may be more efficient.) +.Pp +The +.Fn llround , +.Fn llroundf , +and +.Fn lroundf +functions differ from +.Fn lround +only in their input and output types. +.Sh SEE ALSO +.Xr lrint 3 , +.Xr math 3 , +.Xr rint 3 , +.Xr round 3 +.Sh STANDARDS +The +.Fn llround , +.Fn llroundf , +.Fn lround , +and +.Fn lroundf +functions conform to +.St -isoC-99 . +.Sh HISTORY +These routines first appeared in +.Fx 5.4 . |