⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.h

📁 由3926个源代码
💻 H
字号:
/* @(#) debug.h 2.1 87/12/25 12:22:02 */

/* 
The contents of this file are hereby released to the public domain.

                           -- Rahul Dhesi 1986/11/14

defines conditional function calls 

Usage:  The statement

   debug((printf("y = %d\n", y)))

may be placed anywhere where two or more statements could be used.  It will 
print the value of y at that point.

Conditional compilation:

   if DEBUG is defined
      define the macro debug(X) to execute statement X
   else
      define the macro debug(X) to be null
   endif
*/

#ifdef DEBUG
#define  debug(x)    x;
#else
#define  debug(x)
#endif

⌨️ 快捷键说明

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