#include <stdint.h>
#include <arpa/inet.h>
Go to the source code of this file.
Functions | |
uint64_t | ntohll (uint64_t n) |
converts a 64-bits integer from its network representation (big endian) to its host representation. | |
uint64_t | htonll (uint64_t n) |
converts a 64-bits integer from its host representation to its network (big endian) representation. | |
float | ntoh_float (float net_float) |
converts a simple precision floating point number (32 bits) from its network (big endian) representation to its host representation. | |
float | hton_float (float host_float) |
converts a simple precision floating point number (32 bits) from its host representation to its network (big endian) representation. | |
double | ntoh_double (double net_double) |
converts a double precision floating point number (64 bits) from its network (big endian) representation to its host representation. | |
double | hton_double (double host_double) |
converts a double precision floating point number (64 bits) from its host representation to its network (big endian) representation. |
|
converts a double precision floating point number (64 bits) from its host representation to its network (big endian) representation.
|
|
converts a simple precision floating point number (32 bits) from its host representation to its network (big endian) representation.
|
|
converts a 64-bits integer from its host representation to its network (big endian) representation.
|
|
converts a double precision floating point number (64 bits) from its network (big endian) representation to its host representation.
|
|
converts a simple precision floating point number (32 bits) from its network (big endian) representation to its host representation.
|
|
converts a 64-bits integer from its network representation (big endian) to its host representation.
|