mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2025-12-13 05:06:30 +04:00
10 lines
231 B
C
10 lines
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); |