Listing 6 random.h -- header file for probability functions

z#ifndef _INC_GLOBAL_
#define _INC_GLOBAL_

typedef unsigned char GABool;

float Rand0UpTo1(void);
float Rand0To1(void);
GABool Flip(float Prob);

#endif

/* End of File */