types.h

来自「pxa270 的bootloader源码」· C头文件 代码 · 共 36 行

H
36
字号
#ifndef TYPES_H#define TYPES_H#ifndef __ASSEMBLY__typedef unsigned long		ulong;typedef unsigned short		ushort;typedef unsigned char		uchar;typedef unsigned int		uint;typedef unsigned char		uint8;typedef unsigned short		uint16;typedef unsigned long		uint32;typedef signed char		sint8;typedef signed short		sint16;typedef signed long		sint32;typedef volatile uint		VUINT;typedef volatile uint32		VUINT32;typedef volatile uint16		VUINT16;typedef volatile uint8		VUINT8;typedef volatile uchar		VUCHAR;typedef unsigned long		time_t;typedef unsigned long		clock_t;#ifndef __cplusplustypedef enum { true=1, false=0 } bool;#endif#endif#endif

⌨️ 快捷键说明

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