项目作者: tdworg
项目描述 :
Special functions to jump between functions.
高级语言: PAWN
项目地址: git://github.com/tdworg/samp-include-cjump.git
TDW C-like jumps
This library adds the functional to jump between functions.
Example:
new jmp[JmpBuf];
main() {
new ret;
setjmp(jmp, ret);
if (ret < 10) {
somefunc(ret);
}
}
somefunc(ret)
{
printf("%d", ret);
longjmp(jmp, ++ret);
}