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

📄 assert.c

📁 标准c库代码,可以应用于各个系统提供了大量的基本函数
💻 C
字号:
/*FUNCTION<<assert>>---Macro for Debugging DiagnosticsINDEX	assertANSI_SYNOPSIS	#include <assert.h>	#include <stdlib.h>	void assert(int <[expression]>);TRAD_SYNOPSIS	#include <assert.h>	#include <stdlib.h>	assert(<[expression]>)	int <[expression]>;DESCRIPTION	Use this macro to embed debuggging diagnostic statements in	your programs.  The argument <[expression]> should be an	expression which evaluates to true (nonzero) when your program	is working as you intended.	When <[expression]> evaluates to false (zero), <<assert>>	calls <<abort>>, after first printing a message showing what	failed and where:. Assertion failed: <[expression]>, file <[filename]>, line <[lineno]>	The macro is defined to permit you to turn off all uses of	<<assert>> at compile time by defining <<NDEBUG>> as a	preprocessor variable.   If you do this, the <<assert>> macro	expands to. (void(0))RETURNS	<<assert>> does not return a value.PORTABILITY	The <<assert>> macro is required by ANSI, as is the behavior	when <<NDEBUG>> is defined.Supporting OS subroutines required (only if enabled): <<close>>, <<fstat>>,<<getpid>>, <<isatty>>, <<kill>>, <<lseek>>, <<read>>, <<sbrk>>, <<write>>.*/#include <assert.h>#include <stdlib.h>#include <stdio.h>int_DEFUN (__assertfail, (string, cond, file, line),	char *string _AND	char *cond _AND	char *file _AND	int line){  fiprintf (stderr, string, cond, file, line);  abort ();}

⌨️ 快捷键说明

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