?? 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 + -