setjmp.h

来自「Keil uVision2」· C头文件 代码 · 共 27 行

H
27
字号
/*--------------------------------------------------------------------------
SETJMP.H

Prototypes for longjmp facility.
Copyright (c) 1988-2003 Keil Elektronik GmbH and Keil Software, Inc.
All rights reserved.
--------------------------------------------------------------------------*/

/* define the buffer type for holding the state information */
#ifndef __SETJMP_H__
#define __SETJMP_H__

 #ifdef __CX51__
  #define _JBLEN	9  /* SP, SPE, ?C_XBP, ?C_IBP, ?C_PBP, RET-ADDR */
 #else
  #define _JBLEN	7  /* RET-ADDR, ?C_XBP, ?C_IBP, ?C_PBP, SP */
  /* for Dallas 390:          RET-ADDR, ?C_XBP, ?C_IBP, PCX,    SP */
 #endif

typedef  char jmp_buf[_JBLEN];

/* function prototypes */
extern int  setjmp  (jmp_buf);
extern void longjmp (jmp_buf, int);
#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?