Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
5496 leency 1
 
2
#define __platmath_h__
3
4
 
5
// supported on any platform.
6
double GetDouble(LispObject* aInteger);
7
LispObject* Double(LispEnvironment& aEnvironment,double aValue);
8
9
 
10
LispObject* PlatLn(LispEnvironment& aEnvironment,LispObject* int1, LispInt aPrecision);
11
LispObject* PlatPower(LispEnvironment& aEnvironment,LispObject* int1, LispObject* int2,
12
                        LispInt aPrecision);
13
14
 
15
16
 
17
18
 
19
unsigned primes_table_check(unsigned long p);
20
unsigned primes_table_range();
21
22
 
23