fixtof (3) - Linux Manuals
fixtof: Converts a fixed point to floating point. Allegro game programming library.
Command to display fixtof manual in Linux: $ man 3 fixtof
NAME
fixtof - Converts a fixed point to floating point. Allegro game programming library.
SYNOPSIS
#include <allegro.h>
double fixtof(fixed x);
DESCRIPTION
Converts fixed point to floating point. Example:
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);