Main Page   Modules   Alphabetical List   Data Structures   File List   Data Fields   Globals  

IxAssert.h

Go to the documentation of this file.
00001 
00057 #ifndef IXASSERT_H
00058 
00059 #ifndef __doxygen_HIDE
00060 
00061 #define IXASSERT_H
00062 
00063 #endif /* __doxygen_HIDE */
00064 
00065 /*
00066  * Put the system defined include files required
00067  */
00068 #include <assert.h>
00069 #include <stdio.h>
00070 
00076 #define IX_ASSERT(c) assert(c)
00077 
00083 #ifndef IX_ENSURE_OFF
00084 #define IX_ENSURE(c, str) if (!(c)) printf(str "\n")
00085 #else
00086 #define IX_ENSURE(c, str)
00087 #endif
00088 
00089 #endif /* IXASSERT_H */
00090 
Automatically generated from sources. © Intel Corp. 2003