/* * "ESCMATH.H" * * Part of The Escotia Playstation Library * * Author: ScoTT Campbell * Date: 14/9/98 * * Maths functions that are oddly not included in math.h */ #ifndef __ESCMATHHEADER #define __ESCMATHHEADER int Round(float number); /* Pre: number is a floating point number */ /* Post: returns number rounded to the nearest integer */ #endif