UTIL.H
/*========================================================================== 
 * 
 *  Copyright (C) 1995-1997 Microsoft Corporation. All Rights Reserved. 
 * 
 *  File:       util.h 
 * 
 *@@BEGIN_MSINTERNAL 
 *  History: 
 *   Date       By        Reason 
 *   ====       ==        ====== 
 *   15-sep-97  t-craigs  Created 
 *@@END_MSINTERNAL 
 * 
 ***************************************************************************/ 
 
#define IS_NUM(c)     ((c) >= '0' && (c) <= '9') 
#define IS_SPACE(c)   ((c) == ' ' || (c) == '\r' || (c) == '\n' || (c) == '\t' || (c) == 'x') 
 
intgetint(char**p, int def); 
int     randInt( int low, int high ); 
double  randDouble( double low, double high );