close
Namespaces
Variants

Standard library header <setjmp.h>

From cppreference.com
< c | header

This header is part of the program support utilities 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

typedef /* unspecified */ jmp_buf;
    
int setjmp(jmp_buf env);
[[noreturn]] void longjmp(jmp_buf env, int val);