mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-16 00:33:14 +00:00
5 lines
120 B
C++
5 lines
120 B
C++
#include "ntohll.h"
|
|
|
|
uint64_t ntohll(uint64_t x) {
|
|
return (((uint64_t)ntohl((uint32_t)x)) << 32) + ntohl(x >> 32);
|
|
} |