types.h.svn-base

来自「RT-Thread是发展中的下一代微内核嵌入式实时操作系统」· SVN-BASE 代码 · 共 19 行

SVN-BASE
19
字号
#ifndef __TYPES_H__#define __TYPES_H__/* POSIX */typedef	unsigned char	u_char;typedef	unsigned short	u_short;typedef	unsigned int	u_int;typedef	unsigned long	u_long;/* RT-Thread */typedef char 			rt_int8;typedef short 			rt_int16;typedef long 			rt_int32;typedef unsigned char 	rt_uint8;typedef unsigned short 	rt_uint16;typedef unsigned long 	rt_uint32;#endif

⌨️ 快捷键说明

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