代码拉取完成,页面将自动刷新
/***********************************************************************************************
_____________________________________杭州大仁科技有限公司_______________________________________
@文 件 名: uassert.h
@日 期: 2016.07.23
@作 者: 张诗星
@文件说明:
调试诊断库是一个包含ASSERT(断言)、LOG(日志记录)功能的程序模块。
可以使用调试诊断库来快速的定位程序BUG和记录日志。
ASSERT提供用户一个自定义的断言机制,当定义了NODEBUG时,将启动断言功能
另外用户必须要实现assert_failed函数来完成assert的功能
@修订说明:
***********************************************************************************************/
#ifndef _USE_ASSERT_H_
#define _USE_ASSERT_H_
/*----------------------------------------宏定义----------------------------------------------*/
#ifdef NDEBUG
#define ASSERT(expr) ((void)0)
#define ASSERT_MSG(expr,MSG) ((void)0)
#else
//兼容C C++混合编程
#ifdef __cplusplus
extern "C" {
#endif
// assert处理函数定义
// @file 文件名称
// @line 文件行号
// @message 信息
void assert_failed(const char* file, int line,const char* message);
//兼容C C++混合编程
#ifdef __cplusplus
}
#endif
/*
void assert_failed(const char* file, int line, const char* message)
{
while (1){}
}
*/
// ASSERT默认定义
#define ASSERT(expr) ((expr) ? (void)0 : assert_failed(__FILE__, __LINE__,"ASSERT"))
// 可设置消息的ASSERT定义
#define ASSERT_MSG(expr,aMSG) ((expr) ? (void)0 : assert_failed(__FILE__, __LINE__,aMSG))
#endif /* #ifdef NODEBUG */
#endif /* #ifndef _USE_ASSERT_H_ */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。