assert.h

来自「将earth.bmp文件复制到根目录下」· C头文件 代码 · 共 26 行

H
26
字号
/* assert.h espically created for EV3 project 
 *
 * For evc4 already have these stuff as a pre-require,
 * for evc3 make such a fake assert.h to make affect the lease for the trunk.
 *
 */


#ifndef __ASSERT_H__
#define __ASSERT_H__

#include <windows.h>

#ifdef NDEBUG

#define assert(x) 

#else

#define assert(x)   

#endif



#endif //__ASSERT_H__

⌨️ 快捷键说明

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