ignore_handler_s
From cppreference.com
Defined in header <stdlib.h>
|
||
void ignore_handler_s( const char * restrict msg, void * restrict ptr, |
(since C11) | |
The function simply returns to the caller without performing any other action.
A pointer to this function can be passed to set_constraint_handler_s to establish a runtime constraints violation handler that does nothing.
- As with all bounds-checked functions,
ignore_handler_s
is only guaranteed to be available if __STDC_LIB_EXT1__ is defined by the implementation and if the user defines __STDC_WANT_LIB_EXT1__ to the integer constant 1 before including<stdlib.h>
.
Contents |