[ Web Proxy ]
URL:
Viewing: https://cppreference.com/cpp/header/csetjmp [Back]  [Original]

Standard library header <csetjmp> - cppreference.com
cppreference.com
Namespaces
Variants

Standard library header <csetjmp>

From cppreference.com
 
 
Standard library headers
 

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) [edit]

Macros

saves the context
(function macro) [edit]

Functions

jumps to specified location
(function) [edit]

Synopsis

#define __STDC_VERSION_SETJMP_H__ 202311L

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

#define setjmp(env) /* see description */

Web Proxy Viewer  |  New URL  |  Original Page