home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / c / precg105.lha / source / minmax.h < prev    next >
C/C++ Source or Header  |  1992-12-24  |  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