mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
20 lines
552 B
C
20 lines
552 B
C
/* -----------------------------------------------------------------------
|
|
* Name : rngs.h (header file for the library file rngs.c)
|
|
* Author : Steve Park & Dave Geyer
|
|
* Language : ANSI C
|
|
* Latest Revision : 09-22-98
|
|
* -----------------------------------------------------------------------
|
|
*/
|
|
|
|
#if !defined( _RNGS_ )
|
|
#define _RNGS_
|
|
|
|
double Random(void);
|
|
void PlantSeeds(long x);
|
|
void GetSeed(long *x);
|
|
void PutSeed(long x);
|
|
void SelectStream(int index);
|
|
void TestRandom(void);
|
|
|
|
#endif
|