1 #ifndef SIRANDOM_H
2 #define SIRANDOM_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
6 EXTERN_VAR int siSeed;
7 int siRand();
8 
9 typedef int (*siRandProc)();
10 typedef int (*siRandProc1)(int);
11 int siRandNext(int);
12 int siRandPlus1(int);
13 
14 
15 #ifdef __cplusplus
16 }
17 #endif
18 
19 #endif
20 //
21