Blame examples/define.h

Packit 1c1d7e
/*! \file define.h
Packit 1c1d7e
    \brief testing defines
Packit 1c1d7e
    
Packit 1c1d7e
    This is to test the documentation of defines.
Packit 1c1d7e
*/
Packit 1c1d7e
Packit 1c1d7e
/*!
Packit 1c1d7e
  \def MAX(x,y)
Packit 1c1d7e
  Computes the maximum of \a x and \a y.
Packit 1c1d7e
*/
Packit 1c1d7e
Packit 1c1d7e
/*! 
Packit 1c1d7e
   Computes the absolute value of its argument \a x.
Packit 1c1d7e
*/
Packit 1c1d7e
#define ABS(x) (((x)>0)?(x):-(x))
Packit 1c1d7e
#define MAX(x,y) ((x)>(y)?(x):(y))
Packit 1c1d7e
#define MIN(x,y) ((x)>(y)?(y):(x)) 
Packit 1c1d7e
        /*!< Computes the minimum of \a x and \a y. */