LONGJMP - go to a different block.

(ANSI Standard)

Usage:

#include <setjmp.h>
longjmp(snapshot, value);

Where:

jmp_buf snapshot;
is a program snapshot taken by a previous call to "setjmp".
int value;
is the value to be returned by "setjmp" after the jump.

Description:

"longjmp" jumps to a program state previously recorded by "setjmp". For further information, see "expl c lib setjmp".

Copyright © 1996, Thinkage Ltd.