SU3 file parser

This commit is contained in:
orignal 2014-11-20 14:29:22 -05:00
parent f9ec60265a
commit af2a5b93f2
3 changed files with 64 additions and 1 deletions

View file

@ -34,6 +34,14 @@ uint16_t be16toh(uint16_t big16);
uint32_t be32toh(uint32_t big32);
uint64_t be64toh(uint64_t big64);
// assume LittleEndine
#define htole16
#define htole32
#define htole64
#define le16toh
#define le32toh
#define le64toh
#endif
#endif // I2PENDIAN_H__