assert.3

来自「Unix操作系统minix 2.0源码」· 3 代码 · 共 60 行

3
60
字号


ASSERT(3)                 Minix Programmer's Manual                  ASSERT(3)


NAME
     assert - program verification

SYNOPSIS
     #include <assert.h>

     void assert(int expression)

DESCRIPTION
     Assert is a macro that indicates expression is expected  to  be  true  at
     this  point  in  the  program.   It  causes an abort(3) with a diagnostic
     comment on the standard output when expression is false  (0).   Compiling
     with  the  cc(1)  option  -DNDEBUG  effectively  deletes  assert from the
     program.

DIAGNOSTICS
     `Assertion "expression" failed: file f line n.'  F is the source file and
     n the source line number of the assert statement.


































                                May 12, 1986                                 1

⌨️ 快捷键说明

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