Blame examples/define.h

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