Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ASSERT.3
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:
OS Develop
Development Platform:
WINDOWS
- ." @(#)assert.3 6.2 (Berkeley) 5/12/86
- ."
- .TH ASSERT 3 "May 12, 1986"
- .AT 3
- .SH NAME
- assert - program verification
- .SH SYNOPSIS
- .nf
- .ft B
- #include <assert.h>
- void assert(int fIexpressionfP)
- .fi
- .SH DESCRIPTION
- .B Assert
- is a macro that indicates
- .I expression
- is expected to be true at this point in the program.
- It causes an
- .BR abort (3)
- with a diagnostic comment on the standard output when
- .I expression
- is false (0).
- Compiling with the
- .BR cc (1)
- option
- .SM
- .B -DNDEBUG
- effectively deletes
- .B assert
- from the program.
- .SH DIAGNOSTICS
- `Assertion "fIexpressionfR" failed: file
- .I f
- line
- .IR n .'
- .I F
- is the source file and
- .I n
- the source line number of the
- .B assert
- statement.