W3cubDocs

/C++

Standard library header <csetjmp>

This header was originally in the C standard library as <setjmp.h>.

This header is part of the program support library.

Types

execution context type
(typedef)

Macros

saves the context
(function macro)

Functions

jumps to specified location
(function)

Synopsis

namespace std {
  using jmp_buf = /* see description */ ;
  [[noreturn]] void longjmp(jmp_buf env, int val);
}
#define setjmp(env) /* see description */

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/header/csetjmp