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

📄 byteswap.h

📁 It s a tool designed to extract as much information as possible from Bluetooth devices without the r
💻 H
字号:
#ifndef BYTEORDER_H#define BYTEORDER_H#include <sys/types.h>#ifndef BYTE_ORDER# error "Aiee: BYTE_ORDER not defined\n";#endif#define SWAP2(x) (((x>>8) & 0x00ff) |\                  ((x<<8) & 0xff00))#define SWAP4(x) (((x>>24) & 0x000000ff) |\                  ((x>>8)  & 0x0000ff00) |\                  ((x<<8)  & 0x00ff0000) |\                  ((x<<24) & 0xff000000))#endif /* BYTEORDER_H */

⌨️ 快捷键说明

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