debug.h
来自「opentcp_mcf5282原代码」· C头文件 代码 · 共 33 行
H
33 行
/*********************************************************************************
File: debug.h
Date: 22.1.2004
Version: 0.1
Author: Jari Lahti (jari.lahti@violasystems.com)
Description: Simple debug system
Version Info: 22.1.2004 - First version (JaL)
*********************************************************************************/
#ifndef __INCLUDE_OPENTCP_DEBUG_H__
#define __INCLUDE_OPENTCP_DEBUG_H__
#include "src/common/m5282evb.h"
#include "src/common/stdlib.h"
#define OPENTCP_DEBUG 0 /* Enabled of disabled */
#if OPENTCP_DEBUG == 1
#define DEBUGOUT(c) printf(c)
#else
#define DEBUGOUT(c) {}
#endif
#endif //guard
/* EOF */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?