簡述
頭檔案
linux系統 :#include <arpa/inet.h>
Windows系統 :#include<Winsock2.h>
函式形式
uint32_t ntohl(uint32_t netlong);
netlong:一個以網路位元組順序表達的32位數。
注釋
本函式將一個32位數由網路位元組順序轉換為主機位元組順序。
Windows下調用此函式時,程式需要載入Ws2_32.lib程式庫。
返回值
ntohl()返回一個以主機位元組順序表達的數。
參見
htonl(), htons(), ntohs().