mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 21:51:15 +00:00
Added Software Engineering II code
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
/* -----------------------------------------------------------------------
|
||||
* 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
|
||||
Reference in New Issue
Block a user