mirror of
https://github.com/vasi/pixz
synced 2024-11-18 15:26:46 +00:00
50 lines
831 B
C
50 lines
831 B
C
#ifdef __APPLE__
|
|
|
|
#include <libkern/OSByteOrder.h>
|
|
|
|
uint64_t xle64dec(const uint8_t *d) {
|
|
return OSReadLittleInt64(d, 0);
|
|
}
|
|
|
|
void xle64enc(uint8_t *d, uint64_t n) {
|
|
OSWriteLittleInt64(d, 0, n);
|
|
}
|
|
|
|
#elif defined(__linux__) || defined(__FreeBSD__)
|
|
|
|
#include <stdint.h>
|
|
#ifdef __linux__
|
|
#include <endian.h>
|
|
#else
|
|
#include <sys/endian.h>
|
|
#endif
|
|
|
|
uint64_t xle64dec(const uint8_t *d) {
|
|
return le64toh(*(uint64_t*)d);
|
|
}
|
|
|
|
void xle64enc(uint8_t *d, uint64_t n) {
|
|
*(uint64_t*)d = htole64(n);
|
|
}
|
|
|
|
#else
|
|
|
|
// Platform independent
|
|
#include <stdint.h>
|
|
|
|
uint64_t xle64dec(const uint8_t *d) {
|
|
uint64_t r = 0;
|
|
for (const uint8_t *p = d + sizeof(r) - 1; p >= d; --p)
|
|
r = (r << 8) + *p;
|
|
return r;
|
|
}
|
|
|
|
void xle64enc(uint8_t *d, uint64_t n) {
|
|
for (uint8_t *p = d; p < d + sizeof(n); ++p) {
|
|
*p = n & 0xff;
|
|
n >>= 8;
|
|
}
|
|
}
|
|
|
|
#endif
|