mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
rename globals GraphTraceLen OddByteParity pm3_capabilities
This commit is contained in:
parent
6e0ce662c7
commit
ce57637c80
20 changed files with 167 additions and 167 deletions
|
@ -13,14 +13,14 @@
|
|||
|
||||
#include "common.h"
|
||||
|
||||
extern const uint8_t OddByteParity[256];
|
||||
extern const uint8_t g_OddByteParity[256];
|
||||
|
||||
static inline uint8_t oddparity8(const uint8_t x) {
|
||||
return OddByteParity[x];
|
||||
return g_OddByteParity[x];
|
||||
}
|
||||
|
||||
static inline uint8_t evenparity8(const uint8_t x) {
|
||||
return !OddByteParity[x];
|
||||
return !g_OddByteParity[x];
|
||||
}
|
||||
|
||||
static inline uint8_t evenparity16(uint16_t x) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue