home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 594b.lha / Precognition_rel1 / minmax.h < prev    next >
C/C++ Source or Header  |  1991-12-12  |  151b  |  7 lines

  1. #ifndef MINMAX_H
  2. #define MINMAX_H
  3. /* yer basic min & max fuctions. */
  4. #define MIN(a,b) (((a)<(b))?(a):(b))
  5. #define MAX(a,b) (((a)>(b))?(a):(b))
  6.  
  7. #endif