llround(), llroundf(), llroundl()

Round a floating-point number to the nearest integer value

Synopsis:

#include <math.h>

long long int llround( double x );

long long int llroundf( float x );

long long int llroundl( long double x );

Arguments:

x
The number that you want to round.

Library:

libm

Use the -l m option to qcc to link against this library.

Description:

The llround(), llroundf(), and llroundl() functions round a floating-point number to the nearest integer value, rounding halfway cases away from zero, regardless of the current rounding direction.

To check for error situations, use feclearexcept() and fetestexcept(). For example:

Returns:

The rounded integer value.

If: These functions return: Errors:
x is ±Inf An unspecified value FE_INVALID
x is NaN An unspecified value FE_INVALID
The correct value is too large to represent as a long long An unspecified value FE_INVALID

These functions raise FE_INEXACT if the FPU reports that the result can't be exactly represented as a floating-point number.

Classification:

ANSI, POSIX 1003.1

Safety:  
Cancellation point No
Interrupt handler No
Signal handler No
Thread Yes