[Previous] [Contents] [Next]

fp_rounding()

Set or get the current rounding

Synopsis:

#include <fpstatus.h>

int fp_rounding( int newrounding );

Library:

libm

Description:

The fp_rounding() function sets or gets the current rounding mode, depending on the value of newrounding:

Returns:

If newrounding is less than 0, the current rounding mode; otherwise, the previous mode.

Examples:

#include <fpstatus.h>
#include <stdlib.h>
#include <stdio.h>

int main(int argc, char** argv) 
{
   int ret;

   ret = fp_rounding(-1);
   printf("Rounding mode: ");
   if (ret == _FP_ROUND_NEAREST)
      printf("Nearest \n");
   else if (ret == _FP_ROUND_POSITIVE)
      printf("Positive \n");
   else if (ret == _FP_ROUND_NEGATIVE)
      printf("Negative \n");
   else if (ret == _FP_ROUND_ZERO)
      printf("To Zero \n");
   else
      printf("Error \n");

   return EXIT_SUCCESS;
}

Classification:

ANSI

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

See also:

fp_exception_mask(), fp_exception_value(), fp_precision()


[Previous] [Contents] [Next]