blob: 93223d32c0a42411faf43944c63c6b05a2e67654 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* */
#include <stdint.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);
int inet_aton(const char *cp, struct in_addr *addr);
|