Nearest integer, absolute value, and remainder functions

  1. float fabsf( float x) ;
  2. float frexpf( float x, int *pw2);
  3. float ldexpf( float x, int pw2);
  4. float ceilf(float x) ;
  5. float floorf(float x) ;
  6. float modff(float x, float * y);



Alain Gibaud 2015-07-09