/*
**  util
**
**   misc. utility functions
**
*/

/* 
**   Scott "Jerry" Lawrence
**   2000 January 23
**   j@absynth.com
*/

/*
**
** $Id: util.h,v 1.3 2000/02/07 22:21:02 sdlpci Exp sdlpci $
**
** $Log: util.h,v $
 * Revision 1.3  2000/02/07  22:21:02  sdlpci
 * removed the conditional structure -- it was not needed.
 *
 * Revision 1.2  2000/01/25  05:19:25  sdlpci
 * added MIN, MAX.
 *
 * Revision 1.2  2000/01/25  05:19:25  sdlpci
 * added MIN, MAX.
 *
 * Revision 1.1  2000/01/24  20:31:03  sdlpci
 * Initial revision
 *
**
*/

#define MIN(A,B)    ( ((A)<(B)) ? (A) : (B) )

#define MAX(A,B)    ( ((A)>(B)) ? (A) : (B) )


int random_int(int min, int max);

long Two_to_the_B(long b); // returns 2^B  2**B
