ReactOS 0.4.15-dev-7958-gcd0bb1a
modff.c File Reference
#include <math.h>
Include dependency graph for modff.c:

Go to the source code of this file.

Functions

_Check_return_ float __cdecl modff (_In_ float x, _Out_ float *y)
 

Function Documentation

◆ modff()

_Check_return_ float __cdecl modff ( _In_ float  x,
_Out_ float y 
)

Definition at line 7 of file modff.c.

10{
11 double _Di, _Df;
12
13 _Df = modf((double)x,&_Di);
14 *y = (float)_Di;
15
16 return (float)_Df;
17}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548
_Check_return_ _CRTIMP double __cdecl modf(_In_ double x, _Out_ double *y)
static float(__cdecl *square_half_float)(float x