types.h

来自「bochs完整的虚拟机」· C头文件 代码 · 共 34 行

H
34
字号
#ifndef _LINUX_TYPES_H#define _LINUX_TYPES_H#ifndef __ASSEMBLY__#define u_char bx_u_char#define u_short bx_u_short#define u_int bx_u_int#define u_long bx_u_long#define unchar bx_unchar#define ushort bx_ushort#define uint bx_uint#define ulong bx_ulong/* bsd */typedef unsigned char           u_char;typedef unsigned short          u_short;typedef unsigned int            u_int;typedef unsigned long           u_long;/* sysv */typedef unsigned char           unchar;typedef unsigned short          ushort;typedef unsigned int            uint;typedef unsigned long           ulong;#ifndef NULL#define NULL ((void *) 0)#endif#endif#endif /* _LINUX_TYPES_H */

⌨️ 快捷键说明

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