blob: e3c0474f45c6138cd8854a0ec7efe5a1fe6ea065 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef KSOCKET_UTILS_H
#define KSOCKET_UTILS_H 1
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
uint64_t htonll(uint64_t hostlonglong);
#ifndef BUILD_USERMODE
uint32_t htonl(uint32_t hostlong);
uint16_t htons(uint16_t hostshort);
#endif
uint64_t ntohll(uint64_t netlonglong);
#ifndef BUILD_USERMODE
uint32_t ntohl(uint32_t netlong);
uint16_t ntohs(uint16_t netshort);
#endif
#ifdef __cplusplus
}
#endif
#endif
|