Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 1.53 KB

run-time-error-checking.md

File metadata and controls

27 lines (21 loc) · 1.53 KB
descriptiontitlems.datehelpviewer_keywords
Learn more about: Runtime error checking
Runtime error checking
11/04/2016
runtime error checking
runtime errors, checking

Runtime error checking

The C runtime library contains the functions that support runtime error checks (RTC). Runtime error checking allows you to build your program such that certain kinds of runtime errors are reported. You specify how the errors are reported and which kinds of errors are reported. For more information, see How to: Use native runtime checks.

Use the following functions to customize the way your program does runtime error checking.

Runtime error checking functions

FunctionUse
_RTC_GetErrDescReturns a brief description of a runtime error check type.
_RTC_NumErrorsReturns the total number of errors that can be detected by runtime error checks.
_RTC_SetErrorFuncDesignates a function as the handler for reporting runtime error checks.
_RTC_SetErrorTypeAssociates an error that is detected by runtime error checks with a type.

See also

Universal C runtime routines by category
/RTC (Runtime error checks)
runtime_checks
Debug routines

close