logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

al_fixtoi - Allegro 5 API

Description

       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);

Name

       al_fixtoi - Allegro 5 API

See Also

al_itofix(3alleg5), al_ftofix(3alleg5), al_fixtof(3alleg5), al_fixfloor(3alleg5), al_fixceil(3alleg5).

Allegro reference manual                                                                      al_fixtoi(3alleg5)

Synopsis

              #include <allegro5/allegro.h>

              int al_fixtoi(al_fixed x);

See Also