.\" Automatically generated by Pandoc 2.17.1.1 .\" .\" Define V font for inline verbatim, using C font in formats .\" that render this, and otherwise B font. .ie "\f[CB]x\f[]"x" \{\ . ftr V B . ftr VI BI . ftr VB B . ftr VBI BI .\} .el \{\ . ftr V CR . ftr VI CI . ftr VB CB . ftr VBI CBI .\} .TH "al_fixfloor" "3alleg5" "" "Allegro reference manual" "" .hy .SH NAME .PP al_fixfloor - Allegro 5 API .SH SYNOPSIS .IP .nf \f[C] #include int al_fixfloor(al_fixed x); \f[R] .fi .SH DESCRIPTION .PP Returns the greatest integer not greater than x. That is, it rounds towards negative infinity. .PP Example: .IP .nf \f[C] int result; /* This will put 33 into \[ga]result\[aq]. */ result = al_fixfloor(al_itofix(100) / 3); /* And this will round down to 16. */ result = al_fixfloor(al_itofix(100) / 6); \f[R] .fi .SH SEE ALSO .PP al_fixtoi(3alleg5), al_fixceil(3alleg5).