1 2 3 4 5 6 7 8 9 10 11 12
#ifndef LIB_LE_H #define LIB_LE_H #include <stdint.h> uint16_t le16toh(const void *data); uint32_t le32toh(const void *data); void htole16(void *data, uint16_t value); void htole32(void *data, uint32_t value); #endif /* LIB_LE_H */