-

Difference between revisions of "Functions HI-TECH C SETJMP"

From HI-TECH C for CP/M Fan WIKI(EN)
Jump to: navigation, search
(Created page with "<strong>SETJMP</strong> ==SYNOPSIS== #include <setjmp.h> int setjmp(jmp_buf buf) ==DESCRIPTION== <strong>Setjmp</strong>() is used with <strong>longjmp</strong>() for n...")
 
(No difference)

Latest revision as of 23:28, 31 July 2017

SETJMP

SYNOPSIS

#include <setjmp.h>
int setjmp(jmp_buf buf)


DESCRIPTION

Setjmp() is used with longjmp() for non-local gotos. See longjmp() for further information.

SEE ALSO

longjmp