📄 datasize.h
字号:
/*
* Setup the current limits and size type defs for the defined processor.
* This will define constants for the sizes of integral types, with
* minimums and maximum values allowed for the define.
* Note: mins and maxs will be different for different processors.
* Size (Bytes) Alignment (Bytes)
*/
#ifndef DATASIZE_H
#define DATASIZE_H
/* size casting */
typedef char int8; /* 1 1 */
typedef unsigned char uint8; /* 1 1 */
typedef short int int16; /* 2 2 */
typedef unsigned short uint16; /* 2 2 */
typedef long int int32; /* 4 4 */
typedef unsigned long uint32; /* 4 4 */
typedef unsigned char BOOL;
#define FALSE 0
#define TRUE 1
#endif /* DATASIZE_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -