al_fixtoi
int al_fixtoi(al_fixed x);
Introduced in 5.0.0
Converts fixed point to integer, rounding as required to the nearest integer.
Example:
int result;
/* This will put 33 into `result'. */
result = al_fixtoi(al_itofix(100) / 3);
/* But this will round up to 17. */
result = al_fixtoi(al_itofix(100) / 6);
See also: al_itofix, al_ftofix, al_fixtof, al_fixfloor, al_fixceil.
Most helpful discussions: