blob: d661ac894a9f3629f0768e1757860a4e8d44d7df [file] [log] [blame]
Amit Pundird477f822020-02-07 22:26:08 +05301#ifndef __NS_H_
2#define __NS_H_
3
4#include <endian.h>
5#include <stdint.h>
6
7static inline __le32 cpu_to_le32(uint32_t x) { return htole32(x); }
8static inline uint32_t le32_to_cpu(__le32 x) { return le32toh(x); }
9
10#endif