ReactOS
0.4.16-dev-2104-gb84fa49
modff.c
Go to the documentation of this file.
1
2
#include <math.h>
3
4
_Check_return_
5
float
6
__cdecl
7
modff
(
8
_In_
float
x
,
9
_Out_
float
*
y
)
10
{
11
double
_Di, _Df;
12
13
_Df =
modf
((
double
)
x
,&_Di);
14
*
y
= (
float
)_Di;
15
16
return
(
float
)_Df;
17
}
__cdecl
#define __cdecl
Definition:
corecrt.h:121
modf
_ACRTIMP double __cdecl modf(double, double *)
Definition:
modf.c:30
x
GLint GLint GLint GLint GLint x
Definition:
gl.h:1548
y
GLint GLint GLint GLint GLint GLint y
Definition:
gl.h:1548
modff
float modff(float x, float *iptr)
Definition:
modff.c:30
float
static float(__cdecl *square_half_float)(float x
_Check_return_
#define _Check_return_
Definition:
no_sal2.h:60
_Out_
#define _Out_
Definition:
no_sal2.h:160
_In_
#define _In_
Definition:
no_sal2.h:158
sdk
lib
crt
math
modff.c
Generated on Tue Jan 6 2026 06:19:09 for ReactOS by
1.9.6