ns-3 Direct Code Execution
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
dce-random.h
Go to the documentation of this file.
1 #ifndef SIMU_RANDOM_H
2 #define SIMU_RANDOM_H
3 
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
9 long int dce_random (void);
10 int dce_rand (void);
11 void dce_srandom (unsigned int seed);
12 void dce_srand (unsigned int seed);
13 unsigned short int *dce_seed48 (unsigned short int seed16v[3]);
14 double dce_drand48 (void);
15 long int dce_nrand48 (unsigned short int xsubi[3]);
16 long int dce_lrand48 (void);
17 long int dce_mrand48 (void);
18 double dce_erand48 (unsigned short xsubi[3]);
19 long int dce_jrand48 (unsigned short int xsubi[3]);
20 void dce_srand48 (long int seedval);
21 void dce_lcong48 (unsigned short param[7]);
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif /* SIMU_RANDOM_H */