X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/2b1f4228c2987459445d30443f92038f9ea080c6..905c55de2bbe642412b47ed4e92344096c817fac:/common/parity.c diff --git a/common/parity.c b/common/parity.c index b783b1e9..66fcc558 100644 --- a/common/parity.c +++ b/common/parity.c @@ -5,8 +5,7 @@ //----------------------------------------------------------------------------- // parity functions //----------------------------------------------------------------------------- - -#include +#include const uint8_t OddByteParity[256] = { 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, @@ -45,5 +44,4 @@ const uint8_t EvenByteParity[256] = { 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1, 0 }; -