Files
qrtr/include/ns.h
Konrad Dybcio c3bdf79be2 treewide: meson
Signed-off-by: Konrad Dybcio <konrad.dybcio@linaro.org>
2024-04-09 12:58:19 +02:00

11 lines
218 B
C

#ifndef __NS_H_
#define __NS_H_
#include <endian.h>
#include <stdint.h>
static inline __le32 cpu_to_le32(uint32_t x) { return htole32(x); }
static inline uint32_t le32_to_cpu(__le32 x) { return le32toh(x); }
#endif