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

📄 assert.h

📁 mips架构的bootloader,99左右的版本 但源代码现在没人更新了
💻 H
字号:
/* assert.h */ #ifndef _ASSERT_#define _ASSERT_#ifndef _STDIO_#include <stdio.h>#endif#ifndef NDEBUG#define assert(ex)	_assert(ex)#define _assert(ex) { \	if(!(ex)) { \	fprintf(stderr,"Assertion (ex) failed: file \"%s\", line %d\n", \	__FILE__,__LINE__); \	exit(1); \	} \}#else#define assert(ex)#define _assert(ex)#endif#endif /* _ASSERT_ */

⌨️ 快捷键说明

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