📄 setjmp.h
字号:
#ifndef __TL_SETJMP_H
#define __TL_SETJMP_H
#ifdef __cplusplus
extern "C"
{
#endif
typedef struct
{
/* setjmp() and longjmp() rely on the order of these registers,
so do not re-arrange them */
unsigned edi, esi, ebp, esp, ebx, edx, ecx, eax;
unsigned eip, eflags;
} jmp_buf[1];
int setjmp(jmp_buf b);
void longjmp(jmp_buf b, int ret_val);
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -