mirror of
https://github.com/vasi/pixz
synced 2024-10-30 15:21:41 +00:00
Platform independent endian support
This commit is contained in:
parent
e9ba952c22
commit
b47e687a55
18
endian.c
18
endian.c
@ -25,5 +25,23 @@ void xle64enc(uint8_t *d, uint64_t n) {
|
||||
*(uint64_t*)d = __cpu_to_le64(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
|
||||
|
Loading…
Reference in New Issue
Block a user