home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume20
/
rc
/
part04
/
except.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-05-22
|
295 b
|
15 lines
enum except { ERROR, BREAK, RETURN, STAR, ARENA };
typedef struct Estack Estack;
struct Estack {
enum except e;
boolean interactive;
jmp_buf *jb;
Block *b;
Estack *prev;
};
extern void rc_raise(enum except);
extern void except(enum except, jmp_buf, Estack *);
extern void unexcept(void);