mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-19 01:03:22 +00:00
10 lines
No EOL
231 B
C
10 lines
No EOL
231 B
C
#include "stdint.h"
|
|
|
|
uint8_t oddparity8(const uint8_t x);
|
|
uint8_t evenparity8(const uint8_t x);
|
|
|
|
uint8_t evenparity16(uint16_t x);
|
|
uint8_t oddparity16(uint16_t x);
|
|
|
|
uint8_t evenparity32(uint32_t x);
|
|
uint8_t oddparity32(uint32_t x); |