mirror of
https://github.com/arendst/Tasmota.git
synced 2026-03-03 05:54:42 +01:00
5 lines
128 B
C++
5 lines
128 B
C++
#include "ntohll_ams.h"
|
|
|
|
uint64_t ntohll_ams(uint64_t x) {
|
|
return (((uint64_t)ntohl((uint32_t)x)) << 32) + ntohl(x >> 32);
|
|
} |