|
longjmpfunction
<setjmp> void longjmp (jmp_buf env, int val); Long jump Restores the environment by the most recent invocation of the setjmp macro in the same invocation of the program. The information required to restore this environment is provided by parameter env, whose value is obtained from a previous call to setjmp.The function never returns to the point where it has been invoked. Instead, the function transfers the control to the point where setjmp was used to fill the env parameter. Parameters
Return valueNone. The function never returns.Example
Output:
See also
|