NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
C Standard Library

Description

A PowerPC implementation of the C Standard Library

Macros

#define FLT_EPSILON   (1.0f / 0x800000)
 Difference between 1 and the smallest 32-bit floating-point value greater than 1.
 

Functions

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)
 

Macro Definition Documentation

◆ 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.

Function Documentation

◆ fmod()

double fmod ( double x,
double denom )

Returns the floating-point remainder of x/denom (rounded towards zero).

◆ fabs()

double fabs ( double x)
inline

Returns the absolute value of x.

Definition at line 15 of file math.h.

◆ fabsf()

float fabsf ( float x)
inline

Returns the absolute value of x.

Definition at line 20 of file math.h.