Files
intel-linux-sgx/SampleCode/SampleAttestedTLS/sgx_socket/htonl.c
T
2022-04-07 17:54:55 +08:00

9 lines
146 B
C

#include <netinet/in.h>
#include <byteswap.h>
uint32_t htonl(uint32_t n)
{
union { int i; char c; } u = { 1 };
return u.c ? bswap_32(n) : n;
}