代码搜索:assertion

找到约 1,246 项符合「assertion」的源代码

代码结果 1,246
www.eeworm.com/read/166734/5472861

c assert.c

#include #include int _assert(char *e, char *file, int line) { fprintf(stderr, "assertion failed:"); if (e) fprintf(stderr, " %s", e); if (file) fprintf(stderr,
www.eeworm.com/read/159853/5580343

c assert.c

#include #include void _assert(char *s, char *f, int l) { #if !defined(_M8C) printf("assertion error: \"%s\" on file %s line %d\n", s, f, l); #endif exit(1); }
www.eeworm.com/read/194295/8196363

html index.html

www.eeworm.com/read/194295/8196386

html allclasses-frame.html

All Classes
www.eeworm.com/read/194295/8196388

html index-all.html

: Index
www.eeworm.com/read/172140/9723482

html index.html

www.eeworm.com/read/172140/9723492

html allclasses-frame.html

All Classes
www.eeworm.com/read/172140/9723493

html index-all.html

: Index
www.eeworm.com/read/367457/9746924

h assert.h

/* assert.h -- POSIX header Copyright 1992, Gimpel Software, All Rights Reserved */ #if defined(_lint) #ifdef NDEBUG #define assert(p) ((void)0) #else void __assertfail( const cha
www.eeworm.com/read/367457/9746979

h assert.h

/* assert.h -- ANSI header file Copyright 1988-90, Gimpel Software, All Rights Reserved */ #ifdef NDEBUG #define assert(p) ((void)0) #else void __assertfail( const char *, ... );