📄 datatype.h
字号:
/*******************************/
/* define alias */
/*******************************/
#ifndef DATATYPE_H
#define DATATYPE_H
typedef unsigned char UNSIGNED8;
typedef unsigned char WORD8;
typedef unsigned char BITSET8;
typedef unsigned short UNSIGNED16;
typedef unsigned short WORD16;
typedef unsigned short BITSET16;
typedef unsigned int uint;
typedef unsigned char uchar;
typedef unsigned long ulong;
typedef unsigned int BITFIELD;
typedef unsigned char BOOLEAN1;
typedef unsigned char ANTIVALENT2;
typedef unsigned char BCD4;
typedef unsigned char ENUM4;
typedef unsigned char ENUM8;
typedef char INTEGER8;
typedef char CHARACTER8;
typedef unsigned short ENUM16;
typedef short INTEGER16;
typedef float REAL32;
typedef unsigned long BITSET32;
typedef unsigned long UNSIGNED32;
typedef long INTEGER32;
typedef unsigned long BITSET64;
typedef unsigned long UNSIGNED64;
typedef long INTEGER64;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -