Synopsis
#include <math.h>
float fminf(float x, float y);
Description
fminf determines the minimum of x and y.
IEC 60559 math library behavior
fminf(NaN, y) is y.
fminf(x, NaN) is x.
Portability
fminf conforms to ISO/IEC 9899:1999 (C99).
#include <math.h>
float fminf(float x, float y);
fminf determines the minimum of x and y.
fminf(NaN, y) is y.
fminf(x, NaN) is x.
fminf conforms to ISO/IEC 9899:1999 (C99).