mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-19 11:33:51 +08:00
chg: too many \ slashes
This commit is contained in:
parent
f1202c3fa9
commit
966c111e8c
1 changed files with 7 additions and 7 deletions
|
@ -48,13 +48,13 @@
|
|||
|
||||
// Byte swapping
|
||||
#ifndef BSWAP_64
|
||||
#define BSWAP_64(x) (((uint64_t)(x) << 56) | \\
|
||||
(((uint64_t)(x) << 40) & 0xff000000000000ULL) | \\
|
||||
(((uint64_t)(x) << 24) & 0xff0000000000ULL) | \\
|
||||
(((uint64_t)(x) << 8) & 0xff00000000ULL) | \\
|
||||
(((uint64_t)(x) >> 8) & 0xff000000ULL) | \\
|
||||
(((uint64_t)(x) >> 24) & 0xff0000ULL) | \\
|
||||
(((uint64_t)(x) >> 40) & 0xff00ULL) | \\
|
||||
#define BSWAP_64(x) (((uint64_t)(x) << 56) | \
|
||||
(((uint64_t)(x) << 40) & 0xff000000000000ULL) | \
|
||||
(((uint64_t)(x) << 24) & 0xff0000000000ULL) | \
|
||||
(((uint64_t)(x) << 8) & 0xff00000000ULL) | \
|
||||
(((uint64_t)(x) >> 8) & 0xff000000ULL) | \
|
||||
(((uint64_t)(x) >> 24) & 0xff0000ULL) | \
|
||||
(((uint64_t)(x) >> 40) & 0xff00ULL) | \
|
||||
((uint64_t)(x) >> 56))
|
||||
#endif
|
||||
#ifndef BSWAP_32
|
||||
|
|
Loading…
Add table
Reference in a new issue