labs-edaf30/lab1/coding.h

7 lines
124 B
C
Raw Normal View History

2021-10-27 15:15:47 +02:00
#ifndef __CODING_H
#define __CODING_H
unsigned char encode(unsigned char c);
unsigned char decode(unsigned char c);
#endif