bltypes.h

来自「keil c51 UART --IC 源程序」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef __BLTYPES_H_
#define	__BLTYPES_H_

#ifndef uchar
typedef unsigned char uchar;
#endif //uchar

#ifndef ubyte
typedef unsigned char ubyte;
#endif //ubyte

#ifndef bool
typedef bit bool;
#endif //bool

#ifndef true
#define true 1
#endif //true

#ifndef false
#define false 0
#endif //false

#ifndef uint
typedef unsigned int uint;
#endif //uint

#ifndef ulong
typedef unsigned long int ulong;
#endif //ulong

#ifndef ushort
typedef unsigned short ushort;
#endif //ushort

#endif //__COMMON_H_

⌨️ 快捷键说明

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