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

📄 my_tool.cpp

📁 基于ADI BLACKFIN的jbig压缩和解压缩程序
💻 CPP
字号:
#include "my_tool.h"


#ifdef _DEBUG


#include <stdlib.h>

#include <stdio.h>


void MyAssert(const char* expr, const char* file, const int line,
					int bExpr)
{
	if(!bExpr)
	{
		printf("Assertion \"%s\" failed, at file: %s, line: %d\n", expr, file, line);
		
		exit(-1);
	}
}


#endif

⌨️ 快捷键说明

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