/* File: guess.h
Programmer: Tep Dobry
login: tep
Date:
*/
/* This module is responsible for overseeing the entire program; invoking
the other modules as appropriate. It is the module allowing the
user to play the game repeatedly. This file contains the macros needed
for the game.
*/
#include <stdlib.h>
#define START 1 /* macro for the beginning of range of numbers */
#define STOP 100 /* macro for the end or range of numbers */
/* This macro uses rand() to pick a random number, mod to limit it
and addition to offset it */
#define PICK(start,stop) (rand() % ((stop) - (start) + 1) + (start))