lrintl
(3)round to nearest integer
#include <math.h> long lrint(double x); long lrintf(float x); long lrintl(long double x); long long llrint(double x); long long llrintf(float x); long long llrintl(long double x); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): All functions shown above: _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
LIBRARY
DESCRIPTION
RETURN VALUE
ERRORS
See math_error(7) for information on how to determine whether an error has occurred when calling these functions.
The following errors can occur:
- Domain error: x is a NaN or infinite, or the rounded value is too large
- An invalid floating-point exception (FE_INVALID) is raised.
These functions do not set errno.