home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff339.lzh
/
PCQ
/
Include
/
Math.i
< prev
next >
Wrap
Text File
|
1990-03-19
|
790b
|
32 lines
{
These routines access the mathffp.library. As of version 1.0c
of the compiler, you can do all this stuff with normal expressions in
the language, but I left this here for compatibility.
}
function SPFix(f : real) : integer;
External;
function SPFloat(f : integer) : real;
External;
function SPCmp(f, r : real) : integer;
External;
function SPTst(f : real) : integer;
External;
function SPAbs(f : real) : real;
External;
function SPNeg(f : real) : real;
External;
function SPAdd(f, r : real) : real;
External;
function SPSub(f, r : real) : real;
External;
function SPMul(f, r : real) : real;
External;
function SPDiv(f, r : real) : real;
External;
function SPFloor(f : real) : real;
External;
function SPCeil(f : real) : real;
External;