Lines Matching defs:JumpBuffer
40 struct JumpBuffer;
41 extern "C" JumpBuffer *newJumpbuffer( void );
42 extern "C" void deleteJumpbuffer(JumpBuffer *);
43 extern "C" void mylongjmp( JumpBuffer *, int );
44 extern "C" int mysetjmp( JumpBuffer * );
56 struct JumpBuffer {
60 inline JumpBuffer *
63 return (JumpBuffer *) malloc( sizeof( JumpBuffer ) );
67 deleteJumpbuffer(JumpBuffer *jb)
73 mylongjmp( JumpBuffer *j, int code )
79 mysetjmp( JumpBuffer *j )