#include <nitro/fx/fx_cp.h>
s32 FX_DivS32(s32 a, s32 b);
This function performs division with two s32 types using the
Divider internally. The results are returned as a s32 type.
This function is faster than normal C integer division.
a |
s32 type integer numerator |
b |
s32 type integer denominator |
Result of the division
02/13/2004 Initial Version