📄 ntypes.h
字号:
#ifndef _NTYPES_H
#define _NTYPES_H
typedef char int8;
typedef short int16;
typedef long int32;
typedef unsigned char u_int8;
typedef unsigned short u_int16;
typedef unsigned long u_int32;
typedef u_int8 u_char;
typedef u_int16 u_short;
typedef u_int32 u_int;
typedef u_int32 u_long;
#endif // _NTYPES_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -