msdup_debug.h

来自「<B>Digital的Unix操作系统VAX 4.2源码</B>」· C头文件 代码 · 共 35 行

H
35
字号
/*	@(#)msdup_debug.h	4.1	(ULTRIX)	2/19/91	*//* * DUP Debugging macros. *//* Ensure file is loaded only once. */#ifndef DEBUG_h #define DEBUG_h#ifndef MSDUP_DEBUG#define MSDUP_DEBUG 0#endif#if MSDUP_DEBUG > 0#  define cprint1(x) bprintf x#  if MSDUP_DEBUG > 1#    define cprint2(x) bprintf x#    if MSDUP_DEBUG > 2#      define cprint3(x) bprintf x#    else /* MSDUP_DEBUG > 2 */#      define cprint3(x) ;#    endif /* MSDUP_DEBUG > 2 */#  else /* MSDUP_DEBUG > 1 */#    define cprint2(x) ;#    define cprint3(x) ;#  endif /* MSDUP_DEBUG > 1 */#else /* MSDUP_DEBUG > 0 */#  define cprint1(x) ;#  define cprint2(x) ;#  define cprint3(x) ;#  define bcpy(x, y) ;#endif /* MSDUP_DEBUG > 0 */#endif	/* DEBUG_h */

⌨️ 快捷键说明

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