Define Command
define.h
Go to the documentation of this file.
1 
15 #define ABS(x) (((x)>0)?(x):-(x))
16 #define MAX(x,y) ((x)>(y)?(x):(y))
17 #define MIN(x,y) ((x)>(y)?(y):(x))
18