摘要: ``` #define u8 unsigned char #define u32 unsigned int #define SWAP32(ipValue) ((u32)(((ipValue) & 0xff) > 8) & 0xff00) | \ (((ipValue) >> 24) & 0xff) ); \ int main() { u8 ip_addr[4] = {0}; unsigned lo 阅读全文
posted @ 2020-01-03 13:39 穷书者 阅读(546) 评论(0) 推荐(0) 编辑