home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
program
/
dlibsrc
/
catch.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-10-04
|
382b
|
19 lines
#include <setjmp.h>
static int _catchval; /* catch/throw return value */
int catch(id, fn) /* execute fn() within a catch frame */
register jmp_buf *id;
register int (*fn)();
{
return(setjmp(id) ? _catchval : ((*fn)()));
}
throw(id, rv) /* return rv to the id catch */
register jmp_buf *id;
register int rv;
{
_catchval = rv;
longjmp(id, 1);
}