summaryrefslogtreecommitdiffstats
path: root/v17tcm.h
blob: 790c31ff0d25d1819fd08857170fb7abee958681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef foov17tcmhfoo
#define foov17tcmhfoo

/* $Id$ */

#include <inttypes.h>

struct v17tcm_state {
    uint8_t y, c1, c2, c3;
};

void v17tcm_init(struct v17tcm_state *s);

uint8_t v17tcm_encode(struct v17tcm_state* s, uint8_t input);
uint8_t v17tcm_decode(struct v17tcm_state *s, uint8_t input);

#endif