⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bltypes.h

📁 keil c51 UART --IC 源程序
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -