9 lines
100 B
C
9 lines
100 B
C
#ifndef PARITY_H
|
|
#define PARITY_H
|
|
|
|
#include <stdint.h>
|
|
|
|
uint8_t add_parity(uint8_t nibble);
|
|
|
|
#endif
|