mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-13 15:37:03 +00:00
15 lines
166 B
C
15 lines
166 B
C
/**
|
|
* @copyright Utilitech AS 2023
|
|
* License: Fair Source
|
|
*
|
|
*/
|
|
|
|
#ifndef _NTOHLL_H
|
|
#define _NTOHLL_H
|
|
|
|
#include "lwip/def.h"
|
|
|
|
uint64_t ntohll(uint64_t x);
|
|
|
|
#endif
|