📄 setjmp.h
字号:
/*****************************************************************************//* setjmp.h v6.0.3 *//* Copyright (c) 1993-2006 Texas Instruments Incorporated *//*****************************************************************************/#ifndef _SETJMP#define _SETJMP#include <linkage.h>#ifdef __cplusplusextern "C" namespace std {#endif#define setjmp(x) _setjmp(x) typedef int jmp_buf[13]; #if defined(__EDG_JMP_BUF_NUM_ELEMENTS) && __EDG_JMP_BUF_NUM_ELEMENTS !=13 #error "Front end and runtime disagree on size of jmp_buf" #endif_CODE_ACCESS int _setjmp(jmp_buf env); _CODE_ACCESS void longjmp(jmp_buf env, int val);#ifdef __cplusplus} /* extern "C" namespace std */#ifndef _CPP_STYLE_HEADERusing std::jmp_buf;using std::_setjmp;using std::longjmp;#endif /* _CPP_STYLE_HEADER */#endif /* __cplusplus */#else#ifdef __cplusplus#ifndef _CPP_STYLE_HEADERusing std::jmp_buf;using std::_setjmp;using std::longjmp;#endif /* _CPP_STYLE_HEADER */#endif /* __cplusplus */#endif /* _SETJMP */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -