Go to the source code of this file.
Defines | |
#define | ABS(x) (((x)>0)?(x):-(x)) |
#define | MAX(x, y) ((x)>(y)?(x):(y)) |
#define | MIN(x, y) ((x)>(y)?(y):(x)) /*!< Computes the minimum of \a x and \a y. */ |
This is to test the documentation of defines.
|
Computes the absolute value of its argument x. |
|
Computes the maximum of x and y. |