Skip to content

Commit 5a38e03

Browse files
authored
Add files via upload
1 parent 9f7318a commit 5a38e03

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+29738
-0
lines changed

ASSERT.H

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#undef assert
2+
#ifdef NODEBUG
3+
#define assert(IGNORE) ((void)0)
4+
#else
5+
void DoAssert( char a[], char b[], unsigned int);
6+
#define assert(x) ((void) ((x) || (DoAssert(#x, __FILE__,__LINE__),1)))
7+
#endif

0 commit comments

Comments
 (0)