blob: 7105233fedbe40af4728633490d05ea2e3614b3b [file] [log] [blame]
Bill Yi4e213d52015-06-23 13:53:11 -07001/* General purpose Reed-Solomon decoder for 8-bit symbols or less
2 * Copyright 2003 Phil Karn, KA9Q
3 * May be used under the terms of the GNU Lesser General Public License (LGPL)
4 */
5
6#ifdef DEBUG
7#include <stdio.h>
8#endif
9
10#include <string.h>
11
12#include "char.h"
13#include "rs-common.h"
14
15int decode_rs_char(void *p, data_t *data, int *eras_pos, int no_eras){
16 int retval;
17 struct rs *rs = (struct rs *)p;
18
19#include "decode_rs.h"
20
21 return retval;
22}