assert.h
来自「操作系统源代码」· C头文件 代码 · 共 29 行
H
29 行
/* Copyright (c) 1985 Ceriel J.H. Jacobs *//* $Header: assert.h,v 7.1 88/04/29 11:44:01 ceriel Exp $ *//* Assertion macro */# ifndef _ASSERT_# define PUBLIC extern# else# define PUBLIC# endif#if DO_ASSERT#define assert(x) if(!(x)) badassertion("x",__FILE__,__LINE__)VOID badassertion();/* * void badassertion(ass,fn,lineno) * char *ass, The assertion in string form, * *fn; The filename in which the assertion failed, * int lineno; The line number of the assertion. * * Reports the assertion on standard output and then aborts with a core dump. */#else#define assert(x) /* nothing */#endif# undef PUBLIC
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?