This header was originally in the C standard library as<setjmp.h>.
This header is part of theprogram support library.
Types | ||
execution context type (typedef)[edit] | ||
Macros | ||
saves the context (function macro)[edit] | ||
Functions | ||
jumps to specified location (function)[edit] |
namespace std{using jmp_buf=/* see description */;[[noreturn]]void longjmp(jmp_buf env,int val);}#define setjmp(env) /* see description */