.\" Generated by the Allegro makedoc utility .TH fixtof 3 "version 4.2.2" "Allegro" "Allegro manual" .SH NAME fixtof \- Converts a fixed point to floating point. Allegro game programming library.\& .SH SYNOPSIS .B #include .sp .B double fixtof(fixed x); .SH DESCRIPTION Converts fixed point to floating point. Example: .nf float result; /* This will put 33.33333 into `result'. */ result = fixtof(itofix(100) / 3); /* This will put 16.66666 into `result'. */ result = fixtof(itofix(100) / 6); .fi .SH SEE ALSO .BR ftofix (3), .BR itofix (3), .BR fixtoi (3), .BR exfixed (3), .BR exspline (3), .BR exstars (3)