types.h

来自「学习嵌入式LINUX的好东西」· C头文件 代码 · 共 30 行

H
30
字号
#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 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 + -
显示快捷键?