home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Elysian Archive
/
AmigaElysianArchive.iso
/
prog
/
c
/
precg105.lha
/
source
/
minmax.h
< prev
next >
Wrap
C/C++ Source or Header
|
1992-12-24
|
151b
|
7 lines
#ifndef MINMAX_H
#define MINMAX_H
/* yer basic min & max fuctions. */
#define MIN(a,b) (((a)<(b))?(a):(b))
#define MAX(a,b) (((a)>(b))?(a):(b))
#endif