setjmp.h
来自「上课老师给的8086仿真器」· C头文件 代码 · 共 20 行
H
20 行
/*
* SETJMP.H: prototypes for longjmp facility
* Copyright (c) KEIL ELEKTRONIK GmbH and Franklin Software, Inc., 1991-1993
*/
/* 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 + =
减小字号Ctrl + -
显示快捷键?