mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-06-19 23:12:51 -04:00
15 lines
329 B
C
15 lines
329 B
C
#include <stdio.h>
|
|
|
|
void encode_rs_8_(unsigned char data[], unsigned char parity[], int *npad)
|
|
{
|
|
encode_rs_8(data,parity,*npad); //Compute the parity symbols
|
|
}
|
|
|
|
|
|
int decode_rs_8_(unsigned char *data, int *era_pos, int *numera, int *npad)
|
|
{
|
|
int nerr;
|
|
nerr=decode_rs_8(data,era_pos,*numera,*npad);
|
|
return nerr;
|
|
}
|