/* File: random.h

   This file contains the function prototypes for
   the functions in the random number library.
*/

#ifndef _random_h
#define _random_h

/* Set the random seed 
*/

void SetRandomSeed(void) ;

/* Set the range for return values from GetRandomNumber(). 
*/

void SetRandomRange(int low, int high) ;

/* Return a random number in the range specified by
   calling SetRandomRange.
*/

int GetRandomNumber(void) ; 

#endif
