X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=includes%2Fsetjmp.h;h=cb938a96d3f6e09993062af0796a3197a978fa9c;hb=8c8750c2826684c2420571a8007b9606f72c9040;hp=fe4fbb62420b3f4aeb8b8996fed5583abbaf4471;hpb=1e221deb9ee725a14b3656f94e2763f8faeb18dc;p=pdclib diff --git a/includes/setjmp.h b/includes/setjmp.h index fe4fbb6..cb938a9 100644 --- a/includes/setjmp.h +++ b/includes/setjmp.h @@ -4,24 +4,23 @@ // Public Domain C Library - http://pdclib.sourceforge.net // This code is Public Domain. Use, modify, and redistribute at will. // ---------------------------------------------------------------------------- -// TODO +// Nonlocal jumps // ---------------------------------------------------------------------------- #ifndef __SETJMP_H #define __SETJMP_H __SETJMP_H +// TODO: Documentation + // ---------------------------------------------------------------------------- // TYPEDEFS -struct jmp_buf[1]; +struct jmp_buf[1]; // TODO // ---------------------------------------------------------------------------- // FUNCTIONS -// TODO -int setjmp(jmp_buf env); - -// TODO -void longjmp(jmp_buf env, int val); +int setjmp( jmp_buf env ); +void longjmp( jmp_buf env, int val ); #endif // __SETJMP_H