From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/c/program%2Fjmp_buf.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 devdocs/c/program%2Fjmp_buf.html (limited to 'devdocs/c/program%2Fjmp_buf.html') diff --git a/devdocs/c/program%2Fjmp_buf.html b/devdocs/c/program%2Fjmp_buf.html new file mode 100644 index 00000000..2ebd106e --- /dev/null +++ b/devdocs/c/program%2Fjmp_buf.html @@ -0,0 +1,20 @@ +

jmp_buf

Defined in header <setjmp.h>
typedef /* unspecified */ jmp_buf;
+

The jmp_buf type is an array type suitable for storing information to restore a calling environment. The stored information is sufficient to restore execution at the correct block of the program and invocation of that block. The state of floating-point status flags, or open files, or any other data is not stored in an object of type jmp_buf.

+

References

See also

+ + +
saves the context
(function macro)
jumps to specified location
(function)
C++ documentation for jmp_buf
+

+ © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
+ https://en.cppreference.com/w/c/program/jmp_buf +

+
-- cgit v1.2.3