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_fixfloor - Allegro 5 API

Description

       Returns the greatest integer not greater than x.  That is, it rounds towards negative infinity.

       Example:

              int result;

              /* This will put 33 into `result'. */
              result = al_fixfloor(al_itofix(100) / 3);

              /* And this will round down to 16. */
              result = al_fixfloor(al_itofix(100) / 6);

Name

       al_fixfloor - Allegro 5 API

See Also

al_fixtoi(3alleg5), al_fixceil(3alleg5).

Allegro reference manual                                                                    al_fixfloor(3alleg5)

Synopsis

              #include <allegro5/allegro.h>

              int al_fixfloor(al_fixed x);

See Also