A PowerPC implementation of the C Standard Library
|
#define | FLT_EPSILON (1.0f / 0x800000) |
| Difference between 1 and the smallest 32-bit floating-point value greater than 1.
|
|
|
double | fmod (double x, double denom) |
| Returns the floating-point remainder of x/denom (rounded towards zero).
|
|
double | fabs (double x) |
| Returns the absolute value of x.
|
|
float | fabsf (float x) |
| Returns the absolute value of x.
|
|
void * | memset (void *, u32, u32) |
|
void | memcpy (void *dst, const void *src, int size) |
|
void | snprintf (char *, int, const char *,...) |
|
void | strncpy (char *dst, const char *src, int size) |
|
int | strlen (const char *str) |
|
int | strcmp (const char *str1, const char *str2) |
|
char * | strrchr (const char *, char) |
|
◆ FLT_EPSILON
#define FLT_EPSILON (1.0f / 0x800000) |
Difference between 1 and the smallest 32-bit floating-point value greater than 1.
Definition at line 12 of file float.h.
◆ fmod()
double fmod |
( |
double | x, |
|
|
double | denom ) |
Returns the floating-point remainder of x/denom
(rounded towards zero).
◆ fabs()
Returns the absolute value of x.
Definition at line 15 of file math.h.
◆ fabsf()
Returns the absolute value of x.
Definition at line 20 of file math.h.