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

📄 formats.h

📁 FERRET - a broadcast analysis tool This tool is designed to demonstrate the problem of "data seap
💻 H
字号:
/* Copyright (c) 2007 by Errata Security */
#ifndef __FORMATS_H
#define __FORMATS_H


#define ex32be(px)  (	*((unsigned char*)(px)+0)<<24 \
					|	*((unsigned char*)(px)+1)<<16 \
					|	*((unsigned char*)(px)+2)<< 8 \
					|	*((unsigned char*)(px)+3)<< 0 )
#define ex32le(px)  (	*((unsigned char*)(px)+0)<< 0 \
					|	*((unsigned char*)(px)+1)<< 8 \
					|	*((unsigned char*)(px)+2)<<16 \
					|	*((unsigned char*)(px)+3)<<24 )
#define ex16be(px)  (	*((unsigned char*)(px)+0)<< 8 \
					|	*((unsigned char*)(px)+1)<< 0 )
#define ex16le(px)  (	*((unsigned char*)(px)+0)<< 0 \
					|	*((unsigned char*)(px)+1)<< 8 )

#define ex24be(px)  (	*((unsigned char*)(px)+0)<<16 \
					|	*((unsigned char*)(px)+1)<< 8 \
					|	*((unsigned char*)(px)+2)<< 0 )
#define ex24le(px)  (	*((unsigned char*)(px)+0)<< 0 \
					|	*((unsigned char*)(px)+1)<< 8 \
					|	*((unsigned char*)(px)+2)<<16 )

#endif /*__FORMATS_H*/

⌨️ 快捷键说明

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