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

📄 ylystd.h

📁 51单片机控制网卡实现上网程序代码
💻 H
字号:
#ifndef _YLYSTD_H
#define _YLYSTD_H

/*******************************************************************
*******************************************************************/

#ifndef TRUE
   #define TRUE  1
   #define FALSE 0
#endif

#ifndef NULL
   #define NULL 0
#endif

#ifndef uchar
   typedef unsigned char  uchar;
   typedef unsigned int   uint;
   typedef unsigned short ushort;
   typedef unsigned long  ulong;
#endif

#ifndef WORD
   typedef unsigned short WORD;
   typedef unsigned char  BYTE;
#endif


#ifndef u8_t
   typedef unsigned char  u8_t;
   typedef unsigned short u16_t;
   typedef unsigned long  u32_t;
   typedef char  s8_t;
   typedef short s16_t;
   typedef long  s32_t;
#endif

#ifndef INT8U
   typedef unsigned char INT8U;
   typedef unsigned short INT16U;
   typedef unsigned long  INT32U;
   typedef char  INT8S;
   typedef short INT16S;
   typedef long  INT32S;
#endif

#ifndef BOOL
   typedef unsigned char BOOL;
#endif

#endif /* define _YLYSTD_H */

⌨️ 快捷键说明

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