11.07.2015 Views

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Library FunctionsSETJMPSynopsis#include int setjmp (jmp_buf buf)DescriptionThe setjmp() function is used with longjmp() for non-local goto’s. See longjmp() for further information.Example#include #include #include jmp_buf jb;voidinner (void){longjmp(jb, 5);}voidmain (void){int i;if(i = setjmp(jb)) {printf("setjmp returned %d\n", i);exit(0);}printf("setjmp returned 0 - good\n");printf("calling inner...\n");191

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!