mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
remove spurious spaces & tabs at end of lines
This commit is contained in:
parent
edc19f202a
commit
60f292b18e
249 changed files with 8481 additions and 8481 deletions
|
@ -6,7 +6,7 @@
|
|||
// Parity functions
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
// all functions defined in header file by purpose. Allows compiler optimizations.
|
||||
// all functions defined in header file by purpose. Allows compiler optimizations.
|
||||
|
||||
#ifndef __PARITY_H
|
||||
#define __PARITY_H
|
||||
|
@ -31,7 +31,7 @@ static inline bool evenparity8(const uint8_t x) {
|
|||
}
|
||||
|
||||
|
||||
static inline bool evenparity32(uint32_t x)
|
||||
static inline bool evenparity32(uint32_t x)
|
||||
{
|
||||
#if !defined __GNUC__
|
||||
x ^= x >> 16;
|
||||
|
@ -43,7 +43,7 @@ static inline bool evenparity32(uint32_t x)
|
|||
}
|
||||
|
||||
|
||||
static inline bool oddparity32(uint32_t x)
|
||||
static inline bool oddparity32(uint32_t x)
|
||||
{
|
||||
#if !defined __GNUC__
|
||||
x ^= x >> 16;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue