Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Скачиваний:
50
Добавлен:
14.04.2015
Размер:
1.37 Mб
Скачать

C51 Compiler

211

 

 

Standard Types

The Cx51 standard library contains definitions for a number of standard types which may be used by the library routines. These standard types are declared in include files which you may access from your C programs.

jmp_buf

The jmp_buf type is defined in SETJMP.H and specifies the buffer used by the setjmp and longjmp routines to save and restore the program environment. The jmp_buf type is defined as follows:

#define _JBLEN 7

typedef char jmp_buf[_JBLEN];

va_list

The va_list array type is defined in STDARG.H. This type holds data required by the va_arg and va_end routines. The va_list type is defined as follows:

typedef char *va_list;

8

Соседние файлы в папке HLP