📄 setjmp.h
字号:
/*
*-----------------------------------------------------------------------------
* Copyright (c) KEIL ELEKTRONIK GmbH and Franklin Software, Inc., 1987-1992
*-----------------------------------------------------------------------------
*/
/* SETJMP.H: prototypes for longjmp facility V3.00 */
/* define the buffer type for holding the state information */
#pragma SAVE
#pragma REGPARMS
#ifndef _JMP_BUF_DEFINED
#define _JBLEN 8 /* RET-ADDR, ?C_XBP, ?C_IBP, ?C_BP, SP, ASTACK */
typedef char jmp_buf[_JBLEN];
#define _JMP_BUF_DEFINED
#endif
/* function prototypes */
int setjmp (jmp_buf);
void longjmp (jmp_buf, int);
#pragma RESTORE
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -