CHG: moved into header files.

This commit is contained in:
iceman1001
2017-01-25 00:35:11 +01:00
parent 0ccf8adac4
commit e36b07efc4
7 changed files with 15 additions and 15 deletions

View File

@@ -5,8 +5,7 @@
//-----------------------------------------------------------------------------
// parity functions
//-----------------------------------------------------------------------------
#include <stdint.h>
#include <parity.h>
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
};