NAME
        ftoi - Convert a float to an integer.

SYNOPSYS
        int ftoi(float number)

DESCRIPTION
        With this efun a float can be converted to integer. The value is
	truncated.

EXAMPLE
        ftoi(5.0) returns the integer (int) 5.
        ftoi(5.8) returns the integer (int) 5.

SEE ALSO
        atoi, atof, ftoa
