ReactOS 0.4.16-dev-716-g2b2bdab
assert.h File Reference
#include <corecrt.h>
Include dependency graph for assert.h:

Go to the source code of this file.

Macros

#define assert(expression)
 

Functions

_UCRT_DISABLE_CLANG_WARNINGS _CRT_BEGIN_C_HEADER _ACRTIMP void __cdecl _wassert (_In_z_ wchar_t const *_Message, _In_z_ wchar_t const *_File, _In_ unsigned _Line)
 

Macro Definition Documentation

◆ assert

#define assert (   expression)
Value:
(void)( \
(!!(expression)) || \
(_wassert(_CRT_WIDE(#expression), _CRT_WIDE(__FILE__), (unsigned)(__LINE__)), 0) \
)
_UCRT_DISABLE_CLANG_WARNINGS _CRT_BEGIN_C_HEADER _ACRTIMP void __cdecl _wassert(_In_z_ wchar_t const *_Message, _In_z_ wchar_t const *_File, _In_ unsigned _Line)
#define _CRT_WIDE(_String)
Definition: vcruntime.h:20

Definition at line 39 of file assert.h.

Function Documentation

◆ _wassert()