define.h

来自「doxygen(一个自动从源代码生成文档的工具)的源代码」· C头文件 代码 · 共 18 行

H
18
字号
/*! \file define.h    \brief testing defines        This is to test the documentation of defines.*//*!  \def MAX(x,y)  Computes the maximum of \a x and \a y.*//*!    Computes the absolute value of its argument \a x.*/#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. */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?