X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/2b1f4228c2987459445d30443f92038f9ea080c6..e1778858ddc53a6a82e8ee24f02e6b673687f69a:/common/parity.c?ds=sidebyside 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 }; -