NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
math.h
Go to the documentation of this file.
1
#pragma once
2
///@file
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
/// @addtogroup stdlib
9
/// @{
10
11
/// @brief Returns the floating-point remainder of @p x/denom (rounded towards zero).
12
double
fmod
(
double
x,
double
denom);
13
14
/// @brief Returns the absolute value of x.
15
inline
double
fabs
(
double
x) {
16
return
__fabs(x);
17
}
18
19
/// @brief Returns the absolute value of x.
20
inline
float
fabsf
(
float
x) {
21
return
__fabs(x);
22
}
23
24
/// @}
25
26
#ifdef __cplusplus
27
}
28
#endif
fmod
double fmod(double x, double denom)
Returns the floating-point remainder of x/denom (rounded towards zero).
fabs
double fabs(double x)
Returns the absolute value of x.
Definition
math.h:15
fabsf
float fabsf(float x)
Returns the absolute value of x.
Definition
math.h:20
include
lib
MSL_C
math.h
Made with ❤️ by
CLF78
and
RootCubed
. Logos by
Chasical
and
B1
. Website generated by
Doxygen
1.13.2