home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 3 / CDPDIII.bin / pd / programming / utils / precognition / source / minmax.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-23  |  151 b   |  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