.\" Automatically generated by Pandoc 1.17.2 .\" .TH "al_fixtoi(3alleg5) Allegro reference manual" "" "" "" "" .hy .SH NAME .PP al_fixtoi \- Allegro 5 API .SH SYNOPSIS .IP .nf \f[C] #include\ int\ al_fixtoi(al_fixed\ x); \f[] .fi .SH DESCRIPTION .PP Converts fixed point to integer, rounding as required to the nearest integer. .PP Example: .IP .nf \f[C] int\ result; /*\ This\ will\ put\ 33\ into\ `result\[aq].\ */ result\ =\ al_fixtoi(al_itofix(100)\ /\ 3); /*\ But\ this\ will\ round\ up\ to\ 17.\ */ result\ =\ al_fixtoi(al_itofix(100)\ /\ 6); \f[] .fi .SH SEE ALSO .PP al_itofix(3alleg5), al_ftofix(3alleg5), al_fixtof(3alleg5), al_fixfloor(3alleg5), al_fixceil(3alleg5).