libCATS
Loading...
Searching...
No Matches
interleaver.h
Go to the documentation of this file.
1
6#ifndef CATS_INTERLEAVER_H
7#define CATS_INTERLEAVER_H
8
9#include <stdint.h>
10#include <stddef.h>
11
18void cats_interleave(uint8_t* data, size_t len);
19
26void cats_deinterleave(uint8_t* data, size_t len);
27
28#endif // CATS_INTERLEAVER_H
void cats_deinterleave(uint8_t *data, size_t len)
Deinterleave the supplied data as per the CATS standard.
Definition interleaver.c:31
void cats_interleave(uint8_t *data, size_t len)
Interleave the supplied data as per the CATS standard.
Definition interleaver.c:8