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

📄 types.h

📁 红外接口串口仿真
💻 H
字号:
#ifndef _LINUX_TYPES_H
#define _LINUX_TYPES_H

#undef EOF

#include <stdio.h>

#define false   0
#define true    1

typedef char __s8;
typedef unsigned char __u8;

typedef short __s16;
typedef unsigned short __u16;

typedef int __s32;
typedef unsigned int __u32;

#define cpu_to_le32
#define le32_to_cpu

#define __attribute__(dummy)
#define inline __inline

#ifndef __FUNCTION__
#define __FUNCTION__ __FILE__
#endif

typedef long off_t;

#endif

⌨️ 快捷键说明

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