ASSERT.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:1k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. ASSERT(3)                 Minix Programmer's Manual                  ASSERT(3)
  2. NAME
  3.      assert - program verification
  4. SYNOPSIS
  5.      #include <assert.h>
  6.      void assert(int expression)
  7. DESCRIPTION
  8.      Assert is a macro that indicates expression is expected  to  be  true  at
  9.      this  point  in  the  program.   It  causes an abort(3) with a diagnostic
  10.      comment on the standard output when expression is false  (0).   Compiling
  11.      with  the  cc(1)  option  -DNDEBUG  effectively  deletes  assert from the
  12.      program.
  13. DIAGNOSTICS
  14.      `Assertion "expression" failed: file f line n.'  F is the source file and
  15.      n the source line number of the assert statement.
  16.                                 May 12, 1986                                 1