第71页 注释
2014-07-24
在64位的CentOS 6系统上,大小端转换函数定义如下:
(man 3 htonl)
SYNOPSIS
#include <arpa/inet.h>
uint32_t htonl(uint32_t hostlong);
uint16_t htons(uint16_t hostshort);
uint32_t ntohl(uint32_t netlong);
uint16_t ntohs(uint16_t netshort);
可见它们还是用于32位、16位的函数,与系统是x86还是x86_64无关。