ntohl源码 学习

Posted redman274

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ntohl源码 学习相关的知识,希望对你有一定的参考价值。

1.相关题目,请完成一个宏,实现四个字节翻转...

unsigned long ntohl(unsigned long x)
{
return (x >> 24) | ((x & 0xff0000) >> 8) | ((x & 0xff00) << 8) | (x << 24);
}

以上是关于ntohl源码 学习的主要内容,如果未能解决你的问题,请参考以下文章

转:为什么需要htons(), ntohl(), ntohs(),htons() 函数

socket编程为什么需要htons(), ntohl(), ntohs(),htons() 函数

socket编程为什么需要htons(), ntohl(), ntohs(),htons() 函数

ntohs, ntohl, htons,htonl对比详解

ntohs, ntohl, htons,htonl对比详解

在 sin_port 上使用 ntohl 并获得负数